diff --git a/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml b/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml
deleted file mode 100644
index c4fb76004a82cb17efc653992ff695a6b3af459c..0000000000000000000000000000000000000000
--- a/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml
+++ /dev/null
@@ -1,6944 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module>
-    <type name="QAbstractItemModel" extends="QObject">
-        <signal name="dataChanged">
-            <param name="topLeft" type="QModelIndex"/>
-            <param name="bottomRight" type="QModelIndex"/>
-        </signal>
-        <signal name="headerDataChanged">
-            <param name="orientation" type="Qt.Orientation"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="layoutChanged"/>
-        <signal name="layoutAboutToBeChanged"/>
-        <signal name="rowsAboutToBeInserted">
-            <param name="parent" type="QModelIndex"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="rowsInserted">
-            <param name="parent" type="QModelIndex"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="rowsAboutToBeRemoved">
-            <param name="parent" type="QModelIndex"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="rowsRemoved">
-            <param name="parent" type="QModelIndex"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="columnsAboutToBeInserted">
-            <param name="parent" type="QModelIndex"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="columnsInserted">
-            <param name="parent" type="QModelIndex"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="columnsAboutToBeRemoved">
-            <param name="parent" type="QModelIndex"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="columnsRemoved">
-            <param name="parent" type="QModelIndex"/>
-            <param name="first" type="int"/>
-            <param name="last" type="int"/>
-        </signal>
-        <signal name="modelAboutToBeReset"/>
-        <signal name="modelReset"/>
-        <signal name="rowsAboutToBeMoved">
-            <param name="sourceParent" type="QModelIndex"/>
-            <param name="sourceStart" type="int"/>
-            <param name="sourceEnd" type="int"/>
-            <param name="destinationParent" type="QModelIndex"/>
-            <param name="destinationRow" type="int"/>
-        </signal>
-        <signal name="rowsMoved">
-            <param name="parent" type="QModelIndex"/>
-            <param name="start" type="int"/>
-            <param name="end" type="int"/>
-            <param name="destination" type="QModelIndex"/>
-            <param name="row" type="int"/>
-        </signal>
-        <signal name="columnsAboutToBeMoved">
-            <param name="sourceParent" type="QModelIndex"/>
-            <param name="sourceStart" type="int"/>
-            <param name="sourceEnd" type="int"/>
-            <param name="destinationParent" type="QModelIndex"/>
-            <param name="destinationColumn" type="int"/>
-        </signal>
-        <signal name="columnsMoved">
-            <param name="parent" type="QModelIndex"/>
-            <param name="start" type="int"/>
-            <param name="end" type="int"/>
-            <param name="destination" type="QModelIndex"/>
-            <param name="column" type="int"/>
-        </signal>
-        <method name="submit" type="bool"/>
-        <method name="revert"/>
-    </type>
-    <type name="QAbstractListModel" extends="QAbstractItemModel"/>
-    <type name="QAccelerometer" extends="QSensor">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="Accelerometer"/>
-        </exports>
-    </type>
-    <type name="QAccelerometerReading" extends="QSensorReading">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="AccelerometerReading"/>
-        </exports>
-        <property name="x" type="qreal"/>
-        <property name="y" type="qreal"/>
-        <property name="z" type="qreal"/>
-    </type>
-    <type name="QAction" extends="QObject">
-        <enum name="MenuRole">
-            <enumerator name="NoRole" value="0"/>
-            <enumerator name="TextHeuristicRole" value="1"/>
-            <enumerator name="ApplicationSpecificRole" value="2"/>
-            <enumerator name="AboutQtRole" value="3"/>
-            <enumerator name="AboutRole" value="4"/>
-            <enumerator name="PreferencesRole" value="5"/>
-            <enumerator name="QuitRole" value="6"/>
-        </enum>
-        <enum name="SoftKeyRole">
-            <enumerator name="NoSoftKey" value="0"/>
-            <enumerator name="PositiveSoftKey" value="1"/>
-            <enumerator name="NegativeSoftKey" value="2"/>
-            <enumerator name="SelectSoftKey" value="3"/>
-        </enum>
-        <enum name="Priority">
-            <enumerator name="LowPriority" value="0"/>
-            <enumerator name="NormalPriority" value="128"/>
-            <enumerator name="HighPriority" value="256"/>
-        </enum>
-        <property name="checkable" type="bool" isWritable="true"/>
-        <property name="checked" type="bool" isWritable="true"/>
-        <property name="enabled" type="bool" isWritable="true"/>
-        <property name="icon" type="QIcon" isWritable="true"/>
-        <property name="text" type="string" isWritable="true"/>
-        <property name="iconText" type="string" isWritable="true"/>
-        <property name="toolTip" type="string" isWritable="true"/>
-        <property name="statusTip" type="string" isWritable="true"/>
-        <property name="whatsThis" type="string" isWritable="true"/>
-        <property name="font" type="QFont" isWritable="true"/>
-        <property name="shortcut" type="QKeySequence" isWritable="true"/>
-        <property name="shortcutContext" type="Qt.ShortcutContext" isWritable="true"/>
-        <property name="autoRepeat" type="bool" isWritable="true"/>
-        <property name="visible" type="bool" isWritable="true"/>
-        <property name="menuRole" type="MenuRole" isWritable="true"/>
-        <property name="softKeyRole" type="SoftKeyRole" isWritable="true"/>
-        <property name="iconVisibleInMenu" type="bool" isWritable="true"/>
-        <property name="priority" type="Priority" isWritable="true"/>
-        <signal name="changed"/>
-        <signal name="triggered">
-            <param name="checked" type="bool"/>
-        </signal>
-        <signal name="triggered"/>
-        <signal name="hovered"/>
-        <signal name="toggled">
-            <param type="bool"/>
-        </signal>
-        <method name="trigger"/>
-        <method name="hover"/>
-        <method name="setChecked">
-            <param type="bool"/>
-        </method>
-        <method name="toggle"/>
-        <method name="setEnabled">
-            <param type="bool"/>
-        </method>
-        <method name="setDisabled">
-            <param name="b" type="bool"/>
-        </method>
-        <method name="setVisible">
-            <param type="bool"/>
-        </method>
-    </type>
-    <type name="QAmbientLightReading" extends="QSensorReading">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="AmbientLightReading"/>
-        </exports>
-        <enum name="LightLevel">
-            <enumerator name="Undefined" value="0"/>
-            <enumerator name="Dark" value="1"/>
-            <enumerator name="Twilight" value="2"/>
-            <enumerator name="Light" value="3"/>
-            <enumerator name="Bright" value="4"/>
-            <enumerator name="Sunny" value="5"/>
-        </enum>
-        <property name="lightLevel" type="LightLevel"/>
-    </type>
-    <type name="QAmbientLightSensor" extends="QSensor">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="AmbientLightSensor"/>
-        </exports>
-    </type>
-    <type name="QCompass" extends="QSensor">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="Compass"/>
-        </exports>
-    </type>
-    <type name="QCompassReading" extends="QSensorReading">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="CompassReading"/>
-        </exports>
-        <property name="azimuth" type="qreal"/>
-        <property name="calibrationLevel" type="qreal"/>
-    </type>
-    <type name="QDeclarativeAbstractAnimation" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Animation"/>
-            <export module="QtQuick" version="1.0" type="Animation"/>
-        </exports>
-        <enum name="Loops">
-            <enumerator name="Infinite" value="-2"/>
-        </enum>
-        <property name="running" type="bool" isWritable="true"/>
-        <property name="paused" type="bool" isWritable="true"/>
-        <property name="alwaysRunToEnd" type="bool" isWritable="true"/>
-        <property name="loops" type="int" isWritable="true"/>
-        <signal name="started"/>
-        <signal name="completed"/>
-        <signal name="runningChanged">
-            <param type="bool"/>
-        </signal>
-        <signal name="pausedChanged">
-            <param type="bool"/>
-        </signal>
-        <signal name="alwaysRunToEndChanged">
-            <param type="bool"/>
-        </signal>
-        <signal name="loopCountChanged">
-            <param type="int"/>
-        </signal>
-        <method name="restart"/>
-        <method name="start"/>
-        <method name="pause"/>
-        <method name="resume"/>
-        <method name="stop"/>
-        <method name="complete"/>
-    </type>
-    <type name="QDeclarativeAnchorAnimation" extends="QDeclarativeAbstractAnimation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="AnchorAnimation"/>
-            <export module="Qt" version="4.7" type="AnchorAnimation"/>
-        </exports>
-        <property name="targets" type="QDeclarativeItem" isList="true"/>
-        <property name="duration" type="int" isWritable="true"/>
-        <property name="easing" type="QEasingCurve" isWritable="true"/>
-        <signal name="durationChanged">
-            <param type="int"/>
-        </signal>
-        <signal name="easingChanged">
-            <param type="QEasingCurve"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeAnchorChanges" extends="QDeclarativeStateOperation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="AnchorChanges"/>
-            <export module="Qt" version="4.7" type="AnchorChanges"/>
-        </exports>
-        <property name="target" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="anchors" type="QDeclarativeAnchorSet" isPointer="true"/>
-    </type>
-    <type name="QDeclarativeAnchorSet" extends="QObject">
-        <property name="left" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="right" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="horizontalCenter" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="top" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="bottom" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="verticalCenter" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="baseline" type="QDeclarativeScriptString" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeAnchors" extends="QObject">
-        <property name="left" type="QDeclarativeAnchorLine" isWritable="true"/>
-        <property name="right" type="QDeclarativeAnchorLine" isWritable="true"/>
-        <property name="horizontalCenter" type="QDeclarativeAnchorLine" isWritable="true"/>
-        <property name="top" type="QDeclarativeAnchorLine" isWritable="true"/>
-        <property name="bottom" type="QDeclarativeAnchorLine" isWritable="true"/>
-        <property name="verticalCenter" type="QDeclarativeAnchorLine" isWritable="true"/>
-        <property name="baseline" type="QDeclarativeAnchorLine" isWritable="true"/>
-        <property name="margins" type="qreal" isWritable="true"/>
-        <property name="leftMargin" type="qreal" isWritable="true"/>
-        <property name="rightMargin" type="qreal" isWritable="true"/>
-        <property name="horizontalCenterOffset" type="qreal" isWritable="true"/>
-        <property name="topMargin" type="qreal" isWritable="true"/>
-        <property name="bottomMargin" type="qreal" isWritable="true"/>
-        <property name="verticalCenterOffset" type="qreal" isWritable="true"/>
-        <property name="baselineOffset" type="qreal" isWritable="true"/>
-        <property name="fill" type="QGraphicsObject" isWritable="true" isPointer="true"/>
-        <property name="centerIn" type="QGraphicsObject" isWritable="true" isPointer="true"/>
-        <signal name="leftChanged"/>
-        <signal name="rightChanged"/>
-        <signal name="topChanged"/>
-        <signal name="bottomChanged"/>
-        <signal name="verticalCenterChanged"/>
-        <signal name="horizontalCenterChanged"/>
-        <signal name="baselineChanged"/>
-        <signal name="fillChanged"/>
-        <signal name="centerInChanged"/>
-        <signal name="leftMarginChanged"/>
-        <signal name="rightMarginChanged"/>
-        <signal name="topMarginChanged"/>
-        <signal name="bottomMarginChanged"/>
-        <signal name="marginsChanged"/>
-        <signal name="verticalCenterOffsetChanged"/>
-        <signal name="horizontalCenterOffsetChanged"/>
-        <signal name="baselineOffsetChanged"/>
-    </type>
-    <type name="QDeclarativeAnimatedImage" defaultProperty="data" extends="QDeclarativeImage">
-        <exports>
-            <export module="Qt" version="4.7" type="AnimatedImage"/>
-            <export module="QtQuick" version="1.0" type="AnimatedImage"/>
-        </exports>
-        <property name="playing" type="bool" isWritable="true"/>
-        <property name="paused" type="bool" isWritable="true"/>
-        <property name="currentFrame" type="int" isWritable="true"/>
-        <property name="frameCount" type="int"/>
-        <property name="sourceSize" type="QSize"/>
-        <signal name="playingChanged"/>
-        <signal name="pausedChanged"/>
-        <signal name="frameChanged"/>
-        <signal name="sourceSizeChanged"/>
-    </type>
-    <type name="QDeclarativeAnimationGroup" defaultProperty="animations" extends="QDeclarativeAbstractAnimation">
-        <property name="animations" type="QDeclarativeAbstractAnimation" isList="true"/>
-    </type>
-    <type name="QDeclarativeAudio" extends="QObject">
-        <exports>
-            <export module="QtMultimediaKit" version="1.1" type="Audio"/>
-        </exports>
-        <enum name="Status">
-            <enumerator name="UnknownStatus" value="0"/>
-            <enumerator name="NoMedia" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Loaded" value="3"/>
-            <enumerator name="Stalled" value="4"/>
-            <enumerator name="Buffering" value="5"/>
-            <enumerator name="Buffered" value="6"/>
-            <enumerator name="EndOfMedia" value="7"/>
-            <enumerator name="InvalidMedia" value="8"/>
-        </enum>
-        <enum name="Error">
-            <enumerator name="NoError" value="0"/>
-            <enumerator name="ResourceError" value="1"/>
-            <enumerator name="FormatError" value="2"/>
-            <enumerator name="NetworkError" value="3"/>
-            <enumerator name="AccessDenied" value="4"/>
-            <enumerator name="ServiceMissing" value="5"/>
-        </enum>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="autoLoad" type="bool" isWritable="true"/>
-        <property name="playing" type="bool" isWritable="true"/>
-        <property name="paused" type="bool" isWritable="true"/>
-        <property name="status" type="Status"/>
-        <property name="duration" type="int"/>
-        <property name="position" type="int" isWritable="true"/>
-        <property name="volume" type="qreal" isWritable="true"/>
-        <property name="muted" type="bool" isWritable="true"/>
-        <property name="bufferProgress" type="int"/>
-        <property name="seekable" type="bool"/>
-        <property name="playbackRate" type="qreal" isWritable="true"/>
-        <property name="error" type="Error"/>
-        <property name="errorString" type="string"/>
-        <property name="metaData" type="QDeclarativeMediaMetaData" isPointer="true"/>
-        <signal name="sourceChanged"/>
-        <signal name="autoLoadChanged"/>
-        <signal name="playingChanged"/>
-        <signal name="pausedChanged"/>
-        <signal name="started"/>
-        <signal name="resumed"/>
-        <signal name="paused"/>
-        <signal name="stopped"/>
-        <signal name="statusChanged"/>
-        <signal name="durationChanged"/>
-        <signal name="positionChanged"/>
-        <signal name="volumeChanged"/>
-        <signal name="mutedChanged"/>
-        <signal name="bufferProgressChanged"/>
-        <signal name="seekableChanged"/>
-        <signal name="playbackRateChanged"/>
-        <signal name="errorChanged"/>
-        <signal name="error">
-            <param name="error" type="QDeclarativeAudio.Error"/>
-            <param name="errorString" type="string"/>
-        </signal>
-        <method name="play"/>
-        <method name="pause"/>
-        <method name="stop"/>
-    </type>
-    <type name="QDeclarativeBasePositioner" defaultProperty="data" extends="QDeclarativeItem">
-        <property name="spacing" type="int" isWritable="true"/>
-        <property name="move" type="QDeclarativeTransition" isWritable="true" isPointer="true"/>
-        <property name="add" type="QDeclarativeTransition" isWritable="true" isPointer="true"/>
-        <signal name="spacingChanged"/>
-        <signal name="moveChanged"/>
-        <signal name="addChanged"/>
-    </type>
-    <type name="QDeclarativeBehavior" defaultProperty="animation" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Behavior"/>
-            <export module="QtQuick" version="1.0" type="Behavior"/>
-        </exports>
-        <property name="animation" type="QDeclarativeAbstractAnimation" isWritable="true" isPointer="true"/>
-        <property name="enabled" type="bool" isWritable="true"/>
-        <signal name="enabledChanged"/>
-    </type>
-    <type name="QDeclarativeBind" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Binding"/>
-            <export module="QtQuick" version="1.0" type="Binding"/>
-        </exports>
-        <property name="target" type="QObject" isWritable="true" isPointer="true"/>
-        <property name="property" type="string" isWritable="true"/>
-        <property name="value" type="QVariant" isWritable="true"/>
-        <property name="when" type="bool" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeBorderImage" defaultProperty="data" extends="QDeclarativeImageBase">
-        <exports>
-            <export module="QtQuick" version="1.0" type="BorderImage"/>
-            <export module="Qt" version="4.7" type="BorderImage"/>
-        </exports>
-        <enum name="TileMode">
-            <enumerator name="Stretch" value="0"/>
-            <enumerator name="Repeat" value="1"/>
-            <enumerator name="Round" value="2"/>
-        </enum>
-        <property name="border" type="QDeclarativeScaleGrid" isPointer="true"/>
-        <property name="horizontalTileMode" type="TileMode" isWritable="true"/>
-        <property name="verticalTileMode" type="TileMode" isWritable="true"/>
-        <signal name="horizontalTileModeChanged"/>
-        <signal name="verticalTileModeChanged"/>
-    </type>
-    <type name="QDeclarativeCamera" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtMultimediaKit" version="1.1" type="Camera"/>
-        </exports>
-        <enum name="State">
-            <enumerator name="ActiveState" value="2"/>
-            <enumerator name="LoadedState" value="1"/>
-            <enumerator name="UnloadedState" value="0"/>
-        </enum>
-        <enum name="LockStatus">
-            <enumerator name="Unlocked" value="0"/>
-            <enumerator name="Searching" value="1"/>
-            <enumerator name="Locked" value="2"/>
-        </enum>
-        <enum name="Error">
-            <enumerator name="NoError" value="0"/>
-            <enumerator name="CameraError" value="1"/>
-            <enumerator name="InvalidRequestError" value="2"/>
-            <enumerator name="ServiceMissingError" value="3"/>
-            <enumerator name="NotSupportedFeatureError" value="4"/>
-        </enum>
-        <enum name="FlashMode">
-            <enumerator name="FlashAuto" value="1"/>
-            <enumerator name="FlashOff" value="2"/>
-            <enumerator name="FlashOn" value="4"/>
-            <enumerator name="FlashRedEyeReduction" value="8"/>
-            <enumerator name="FlashFill" value="16"/>
-            <enumerator name="FlashTorch" value="32"/>
-            <enumerator name="FlashSlowSyncFrontCurtain" value="64"/>
-            <enumerator name="FlashSlowSyncRearCurtain" value="128"/>
-            <enumerator name="FlashManual" value="256"/>
-        </enum>
-        <enum name="ExposureMode">
-            <enumerator name="ExposureAuto" value="0"/>
-            <enumerator name="ExposureManual" value="1"/>
-            <enumerator name="ExposurePortrait" value="2"/>
-            <enumerator name="ExposureNight" value="3"/>
-            <enumerator name="ExposureBacklight" value="4"/>
-            <enumerator name="ExposureSpotlight" value="5"/>
-            <enumerator name="ExposureSports" value="6"/>
-            <enumerator name="ExposureSnow" value="7"/>
-            <enumerator name="ExposureBeach" value="8"/>
-            <enumerator name="ExposureLargeAperture" value="9"/>
-            <enumerator name="ExposureSmallAperture" value="10"/>
-            <enumerator name="ExposureModeVendor" value="1000"/>
-        </enum>
-        <enum name="WhiteBalanceMode">
-            <enumerator name="WhiteBalanceAuto" value="0"/>
-            <enumerator name="WhiteBalanceManual" value="1"/>
-            <enumerator name="WhiteBalanceSunlight" value="2"/>
-            <enumerator name="WhiteBalanceCloudy" value="3"/>
-            <enumerator name="WhiteBalanceShade" value="4"/>
-            <enumerator name="WhiteBalanceTungsten" value="5"/>
-            <enumerator name="WhiteBalanceFluorescent" value="6"/>
-            <enumerator name="WhiteBalanceIncandescent" value="7"/>
-            <enumerator name="WhiteBalanceFlash" value="8"/>
-            <enumerator name="WhiteBalanceSunset" value="9"/>
-            <enumerator name="WhiteBalanceVendor" value="1000"/>
-        </enum>
-        <property name="cameraState" type="State" isWritable="true"/>
-        <property name="lockStatus" type="LockStatus"/>
-        <property name="errorString" type="string"/>
-        <property name="capturedImagePath" type="string"/>
-        <property name="iso" type="int" isWritable="true"/>
-        <property name="shutterSpeed" type="qreal"/>
-        <property name="aperture" type="qreal"/>
-        <property name="exposureCompensation" type="qreal" isWritable="true"/>
-        <property name="exposureMode" type="ExposureMode" isWritable="true"/>
-        <property name="flashMode" type="int" isWritable="true"/>
-        <property name="whiteBalanceMode" type="WhiteBalanceMode" isWritable="true"/>
-        <property name="manualWhiteBalance" type="int" isWritable="true"/>
-        <property name="captureResolution" type="QSize" isWritable="true"/>
-        <property name="opticalZoom" type="qreal" isWritable="true"/>
-        <property name="maximumOpticalZoom" type="qreal"/>
-        <property name="digitalZoom" type="qreal" isWritable="true"/>
-        <property name="maximumDigitalZoom" type="qreal"/>
-        <signal name="errorChanged"/>
-        <signal name="error">
-            <param name="error" type="QDeclarativeCamera.Error"/>
-            <param name="errorString" type="string"/>
-        </signal>
-        <signal name="cameraStateChanged">
-            <param type="QDeclarativeCamera.State"/>
-        </signal>
-        <signal name="lockStatusChanged"/>
-        <signal name="imageCaptured">
-            <param name="preview" type="string"/>
-        </signal>
-        <signal name="imageSaved">
-            <param name="path" type="string"/>
-        </signal>
-        <signal name="captureFailed">
-            <param name="message" type="string"/>
-        </signal>
-        <signal name="isoSensitivityChanged">
-            <param type="int"/>
-        </signal>
-        <signal name="apertureChanged">
-            <param type="qreal"/>
-        </signal>
-        <signal name="shutterSpeedChanged">
-            <param type="qreal"/>
-        </signal>
-        <signal name="exposureCompensationChanged">
-            <param type="qreal"/>
-        </signal>
-        <signal name="exposureModeChanged">
-            <param type="QDeclarativeCamera.ExposureMode"/>
-        </signal>
-        <signal name="flashModeChanged">
-            <param type="int"/>
-        </signal>
-        <signal name="whiteBalanceModeChanged">
-            <param type="QDeclarativeCamera.WhiteBalanceMode"/>
-        </signal>
-        <signal name="manualWhiteBalanceChanged">
-            <param type="int"/>
-        </signal>
-        <signal name="captureResolutionChanged">
-            <param type="QSize"/>
-        </signal>
-        <signal name="opticalZoomChanged">
-            <param type="qreal"/>
-        </signal>
-        <signal name="digitalZoomChanged">
-            <param type="qreal"/>
-        </signal>
-        <signal name="maximumOpticalZoomChanged">
-            <param type="qreal"/>
-        </signal>
-        <signal name="maximumDigitalZoomChanged">
-            <param type="qreal"/>
-        </signal>
-        <method name="start"/>
-        <method name="stop"/>
-        <method name="setCameraState">
-            <param name="state" type="State"/>
-        </method>
-        <method name="searchAndLock"/>
-        <method name="unlock"/>
-        <method name="captureImage"/>
-        <method name="setFlashMode">
-            <param type="int"/>
-        </method>
-        <method name="setExposureMode">
-            <param type="QDeclarativeCamera.ExposureMode"/>
-        </method>
-        <method name="setExposureCompensation">
-            <param name="ev" type="qreal"/>
-        </method>
-        <method name="setManualIsoSensitivity">
-            <param name="iso" type="int"/>
-        </method>
-        <method name="setWhiteBalanceMode">
-            <param name="mode" type="QDeclarativeCamera.WhiteBalanceMode"/>
-        </method>
-        <method name="setManualWhiteBalance">
-            <param name="colorTemp" type="int"/>
-        </method>
-        <method name="setCaptureResolution">
-            <param name="size" type="QSize"/>
-        </method>
-        <method name="setOpticalZoom">
-            <param type="qreal"/>
-        </method>
-        <method name="setDigitalZoom">
-            <param type="qreal"/>
-        </method>
-    </type>
-    <type name="QDeclarativeColorAnimation" extends="QDeclarativePropertyAnimation">
-        <exports>
-            <export module="Qt" version="4.7" type="ColorAnimation"/>
-            <export module="QtQuick" version="1.0" type="ColorAnimation"/>
-        </exports>
-        <property name="from" type="QColor" isWritable="true"/>
-        <property name="to" type="QColor" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeColumn" defaultProperty="data" extends="QDeclarativeBasePositioner">
-        <exports>
-            <export module="Qt" version="4.7" type="Column"/>
-            <export module="QtQuick" version="1.0" type="Column"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeComponent" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Component"/>
-            <export module="QtQuick" version="1.0" type="Component"/>
-        </exports>
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Ready" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Error" value="3"/>
-        </enum>
-        <property name="progress" type="qreal"/>
-        <property name="status" type="Status"/>
-        <property name="url" type="QUrl"/>
-        <signal name="statusChanged">
-            <param type="QDeclarativeComponent.Status"/>
-        </signal>
-        <signal name="progressChanged">
-            <param type="qreal"/>
-        </signal>
-        <method name="errorString" type="string"/>
-    </type>
-    <type name="QDeclarativeConnections" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Connections"/>
-            <export module="QtQuick" version="1.0" type="Connections"/>
-            <export module="Qt" version="4.7" type="Connections"/>
-            <export module="Qt" version="4.7" type="Connections"/>
-        </exports>
-        <property name="target" type="QObject" isWritable="true" isPointer="true"/>
-        <property name="ignoreUnknownSignals" type="bool" isWritable="true"/>
-        <signal name="targetChanged"/>
-    </type>
-    <type name="QDeclarativeContact" defaultProperty="details" extends="QObject">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Contact"/>
-        </exports>
-        <enum name="ContactType">
-            <enumerator name="Contact" value="0"/>
-            <enumerator name="Group" value="1"/>
-        </enum>
-        <property name="contactId" type="QContactLocalId"/>
-        <property name="manager" type="string"/>
-        <property name="details" type="QDeclarativeContactDetail" isList="true"/>
-        <property name="address" type="QDeclarativeContactAddress" isPointer="true"/>
-        <property name="anniversary" type="QDeclarativeContactAnniversary" isPointer="true"/>
-        <property name="avatar" type="QDeclarativeContactAvatar" isPointer="true"/>
-        <property name="birthday" type="QDeclarativeContactBirthday" isPointer="true"/>
-        <property name="displayLabel" type="string"/>
-        <property name="email" type="QDeclarativeContactEmailAddress" isPointer="true"/>
-        <property name="family" type="QDeclarativeContactFamily" isPointer="true"/>
-        <property name="favorite" type="QDeclarativeContactFavorite" isPointer="true"/>
-        <property name="gender" type="QDeclarativeContactGender" isPointer="true"/>
-        <property name="geolocation" type="QDeclarativeContactGeoLocation" isPointer="true"/>
-        <property name="globalPresence" type="QDeclarativeContactGlobalPresence" isPointer="true"/>
-        <property name="guid" type="QDeclarativeContactGuid" isPointer="true"/>
-        <property name="name" type="QDeclarativeContactName" isPointer="true"/>
-        <property name="nickname" type="QDeclarativeContactNickname" isPointer="true"/>
-        <property name="note" type="QDeclarativeContactNote" isPointer="true"/>
-        <property name="onlineAccount" type="QDeclarativeContactOnlineAccount" isPointer="true"/>
-        <property name="organization" type="QDeclarativeContactOrganization" isPointer="true"/>
-        <property name="phoneNumber" type="QDeclarativeContactPhoneNumber" isPointer="true"/>
-        <property name="presence" type="QDeclarativeContactPresence" isPointer="true"/>
-        <property name="ringtone" type="QDeclarativeContactRingtone" isPointer="true"/>
-        <property name="syncTarget" type="QDeclarativeContactSyncTarget" isPointer="true"/>
-        <property name="tag" type="QDeclarativeContactTag" isPointer="true"/>
-        <property name="thumbnail" type="QUrl" isWritable="true"/>
-        <property name="type" type="ContactType" isWritable="true"/>
-        <property name="url" type="QDeclarativeContactUrl" isPointer="true"/>
-        <property name="hobby" type="QDeclarativeContactHobby" isPointer="true"/>
-        <property name="modified" type="bool"/>
-        <signal name="contactIdChanged"/>
-        <signal name="managerChanged"/>
-        <signal name="detailsChanged"/>
-        <method name="clearDetails"/>
-        <method name="save"/>
-        <method name="detail" type="QDeclarativeContactDetail*">
-            <param name="name" type="QVariant"/>
-        </method>
-        <method name="details" type="QDeclarativeListProperty&lt;QDeclarativeContactDetail&gt;">
-            <param name="name" type="QVariant"/>
-        </method>
-        <method name="removeDetail" type="bool">
-            <param name="detail" type="QDeclarativeContactDetail" isPointer="true"/>
-        </method>
-    </type>
-    <type name="QDeclarativeContactActionFilter" defaultProperty="actionName" extends="QDeclarativeContactFilter">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="ActionFilter"/>
-        </exports>
-        <property name="actionName" type="string" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeContactAddress" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Address"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Street" value="0"/>
-            <enumerator name="Locality" value="1"/>
-            <enumerator name="Region" value="2"/>
-            <enumerator name="PostCode" value="3"/>
-            <enumerator name="Country" value="4"/>
-            <enumerator name="SubTypes" value="5"/>
-            <enumerator name="PostOfficeBox" value="6"/>
-        </enum>
-        <enum name="AddressSubType">
-            <enumerator name="Parcel" value="0"/>
-            <enumerator name="Postal" value="1"/>
-            <enumerator name="Domestic" value="2"/>
-            <enumerator name="International" value="3"/>
-        </enum>
-        <property name="street" type="string" isWritable="true"/>
-        <property name="locality" type="string" isWritable="true"/>
-        <property name="region" type="string" isWritable="true"/>
-        <property name="postcode" type="string" isWritable="true"/>
-        <property name="country" type="string" isWritable="true"/>
-        <property name="subTypes" type="QVariantList" isWritable="true"/>
-        <property name="postOfficeBox" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactAnniversary" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Anniversary"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="CalendarId" value="0"/>
-            <enumerator name="OriginalDate" value="1"/>
-            <enumerator name="Event" value="2"/>
-            <enumerator name="SubType" value="3"/>
-        </enum>
-        <enum name="AnniversarySubType">
-            <enumerator name="Unknown" value="0"/>
-            <enumerator name="Wedding" value="1"/>
-            <enumerator name="Engagement" value="2"/>
-            <enumerator name="House" value="3"/>
-            <enumerator name="Employment" value="4"/>
-            <enumerator name="Memorial" value="5"/>
-        </enum>
-        <property name="calendarId" type="string" isWritable="true"/>
-        <property name="originalDate" type="QDate" isWritable="true"/>
-        <property name="originalDateTime" type="QDateTime" isWritable="true"/>
-        <property name="event" type="string" isWritable="true"/>
-        <property name="subType" type="AnniversarySubType" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactAvatar" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Avatar"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="ImageUrl" value="0"/>
-            <enumerator name="VideoUrl" value="1"/>
-        </enum>
-        <property name="imageUrl" type="QUrl" isWritable="true"/>
-        <property name="videoUrl" type="QUrl" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactBirthday" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Birthday"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Birthday" value="0"/>
-        </enum>
-        <property name="birthday" type="QDateTime" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactChangeLogFilter" extends="QDeclarativeContactFilter">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="ChangeLogFilter"/>
-        </exports>
-        <enum name="EventType">
-            <enumerator name="EventAdded" value="0"/>
-            <enumerator name="EventChanged" value="1"/>
-            <enumerator name="EventRemoved" value="2"/>
-        </enum>
-        <property name="since" type="QDateTime" isWritable="true"/>
-        <property name="eventType" type="EventType" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeContactDetail" extends="QObject">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="ContactDetail"/>
-        </exports>
-        <enum name="ContactDetailType">
-            <enumerator name="Address" value="0"/>
-            <enumerator name="Anniversary" value="1"/>
-            <enumerator name="Avatar" value="2"/>
-            <enumerator name="Birthday" value="3"/>
-            <enumerator name="DisplayLabel" value="4"/>
-            <enumerator name="Email" value="5"/>
-            <enumerator name="Family" value="6"/>
-            <enumerator name="Favorite" value="7"/>
-            <enumerator name="Gender" value="8"/>
-            <enumerator name="Geolocation" value="9"/>
-            <enumerator name="GlobalPresence" value="10"/>
-            <enumerator name="Guid" value="11"/>
-            <enumerator name="Name" value="12"/>
-            <enumerator name="NickName" value="13"/>
-            <enumerator name="Note" value="14"/>
-            <enumerator name="OnlineAccount" value="15"/>
-            <enumerator name="Organization" value="16"/>
-            <enumerator name="PhoneNumber" value="17"/>
-            <enumerator name="Presence" value="18"/>
-            <enumerator name="Ringtone" value="19"/>
-            <enumerator name="SyncTarget" value="20"/>
-            <enumerator name="Tag" value="21"/>
-            <enumerator name="Timestamp" value="22"/>
-            <enumerator name="Url" value="23"/>
-            <enumerator name="Hobby" value="24"/>
-            <enumerator name="Customized" value="100"/>
-        </enum>
-        <property name="type" type="ContactDetailType"/>
-        <property name="definitionName" type="string"/>
-        <property name="contexts" type="QStringList" isWritable="true"/>
-        <property name="detailUri" type="string" isWritable="true"/>
-        <property name="linkedDetailUris" type="QStringList" isWritable="true"/>
-        <property name="fieldNames" type="QStringList"/>
-        <property name="readOnly" type="bool"/>
-        <property name="removable" type="bool"/>
-        <signal name="valueChanged"/>
-        <method name="value" type="QVariant">
-            <param name="key" type="string"/>
-        </method>
-        <method name="setValue" type="bool">
-            <param name="key" type="string"/>
-            <param name="value" type="QVariant"/>
-        </method>
-    </type>
-    <type name="QDeclarativeContactDetailFilter" extends="QDeclarativeContactFilter">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="DetailFilter"/>
-        </exports>
-        <property name="detail" type="QDeclarativeContactDetail.ContactDetailType" isWritable="true"/>
-        <property name="field" type="int" isWritable="true"/>
-        <property name="value" type="QVariant" isWritable="true"/>
-        <property name="matchFlags" type="MatchFlags" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeContactDetailRangeFilter" extends="QDeclarativeContactFilter">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="DetailRangeFilter"/>
-        </exports>
-        <enum name="RangeFlags">
-            <enumerator name="IncludeLower" value="0"/>
-            <enumerator name="IncludeUpper" value="1"/>
-            <enumerator name="ExcludeLower" value="2"/>
-            <enumerator name="ExcludeUpper" value="0"/>
-        </enum>
-        <property name="detail" type="QDeclarativeContactDetail.ContactDetailType" isWritable="true"/>
-        <property name="field" type="int" isWritable="true"/>
-        <property name="min" type="QVariant" isWritable="true"/>
-        <property name="max" type="QVariant" isWritable="true"/>
-        <property name="matchFlags" type="MatchFlags" isWritable="true"/>
-        <property name="rangeFlags" type="RangeFlags" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeContactDisplayLabel" defaultProperty="label" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="DisplayLabel"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Label" value="0"/>
-        </enum>
-        <property name="label" type="string"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactEmailAddress" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="EmailAddress"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="EmailAddress" value="0"/>
-        </enum>
-        <property name="emailAddress" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactFamily" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Family"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Spouse" value="0"/>
-            <enumerator name="Children" value="1"/>
-        </enum>
-        <property name="spouse" type="string" isWritable="true"/>
-        <property name="children" type="QStringList" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactFavorite" defaultProperty="index" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Favorite"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Favorite" value="0"/>
-            <enumerator name="Index" value="1"/>
-        </enum>
-        <property name="favorite" type="bool" isWritable="true"/>
-        <property name="index" type="int" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactFetchHint" extends="QObject">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="FetchHint"/>
-        </exports>
-        <enum name="OptimizationHints">
-            <enumerator name="AllRequired" value="0"/>
-            <enumerator name="NoRelationships" value="1"/>
-            <enumerator name="NoActionPreferences" value="2"/>
-            <enumerator name="NoBinaryBlobs" value="4"/>
-        </enum>
-        <property name="detailDefinitionsHint" type="QStringList" isWritable="true"/>
-        <property name="relationshipTypesHint" type="QStringList" isWritable="true"/>
-        <property name="optimizationHints" type="OptimizationHints" isWritable="true"/>
-        <property name="optimizationHints" type="QSize" isWritable="true"/>
-        <signal name="fetchHintChanged"/>
-    </type>
-    <type name="QDeclarativeContactFilter" extends="QObject">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Filter"/>
-        </exports>
-        <enum name="FilterType">
-            <enumerator name="InvalidFilter" value="0"/>
-            <enumerator name="DetailFilter" value="1"/>
-            <enumerator name="DetailRangeFilter" value="2"/>
-            <enumerator name="ChangeLogFilter" value="3"/>
-            <enumerator name="ActionFilter" value="4"/>
-            <enumerator name="RelationshipFilter" value="5"/>
-            <enumerator name="IntersectionFilter" value="6"/>
-            <enumerator name="UnionFilter" value="7"/>
-            <enumerator name="IdFilter" value="8"/>
-            <enumerator name="DefaultFilter" value="9"/>
-        </enum>
-        <enum name="MatchFlags">
-            <enumerator name="MatchExactly" value="0"/>
-            <enumerator name="MatchContains" value="1"/>
-            <enumerator name="MatchStartsWith" value="2"/>
-            <enumerator name="MatchEndsWith" value="3"/>
-            <enumerator name="MatchFixedString" value="8"/>
-            <enumerator name="MatchCaseSensitive" value="16"/>
-            <enumerator name="MatchPhoneNumber" value="1024"/>
-            <enumerator name="MatchKeypadCollation" value="2048"/>
-        </enum>
-        <property name="type" type="FilterType"/>
-        <signal name="typeChanged"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeContactGender" defaultProperty="gender" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Gender"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Gender" value="0"/>
-        </enum>
-        <enum name="GenderType">
-            <enumerator name="Male" value="0"/>
-            <enumerator name="Female" value="1"/>
-        </enum>
-        <property name="gender" type="GenderType" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactGeoLocation" defaultProperty="label" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Location"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Label" value="0"/>
-            <enumerator name="Latitude" value="1"/>
-            <enumerator name="Longitude" value="2"/>
-            <enumerator name="Accuracy" value="3"/>
-            <enumerator name="Altitude" value="4"/>
-            <enumerator name="AltitudeAccuracy" value="5"/>
-            <enumerator name="Heading" value="6"/>
-            <enumerator name="Speed" value="7"/>
-            <enumerator name="Timestamp" value="8"/>
-        </enum>
-        <property name="label" type="string" isWritable="true"/>
-        <property name="latitude" type="double" isWritable="true"/>
-        <property name="longitude" type="double" isWritable="true"/>
-        <property name="accuracy" type="double" isWritable="true"/>
-        <property name="altitude" type="double" isWritable="true"/>
-        <property name="altitudeAccuracy" type="double" isWritable="true"/>
-        <property name="heading" type="double" isWritable="true"/>
-        <property name="speed" type="double" isWritable="true"/>
-        <property name="timestamp" type="QDateTime" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactGlobalPresence" defaultProperty="state" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="GlobalPresence"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Timestamp" value="0"/>
-            <enumerator name="Nickname" value="1"/>
-            <enumerator name="State" value="2"/>
-            <enumerator name="StateText" value="3"/>
-            <enumerator name="ImageUrl" value="4"/>
-            <enumerator name="CustomMessage" value="5"/>
-        </enum>
-        <property name="timestamp" type="QDateTime" isWritable="true"/>
-        <property name="nickname" type="string" isWritable="true"/>
-        <property name="state" type="QDeclarativeContactPresence.PresenceStateType" isWritable="true"/>
-        <property name="stateText" type="string" isWritable="true"/>
-        <property name="imageUrl" type="QUrl" isWritable="true"/>
-        <property name="customMessage" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactGuid" defaultProperty="guid" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Guid"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Guid" value="0"/>
-        </enum>
-        <property name="guid" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactHobby" defaultProperty="hobby" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Hobby"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Hobby" value="0"/>
-        </enum>
-        <property name="hobby" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactIntersectionFilter" defaultProperty="filters" extends="QDeclarativeContactFilter">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="IntersectionFilter"/>
-        </exports>
-        <property name="filters" type="QDeclarativeContactFilter" isList="true"/>
-        <signal name="valueChanged"/>
-        <method name="setFilters"/>
-    </type>
-    <type name="QDeclarativeContactLocalIdFilter" defaultProperty="ids" extends="QDeclarativeContactFilter">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="IdFilter"/>
-        </exports>
-        <property name="ids" type="QStringList" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeContactModel" extends="QAbstractListModel">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="ContactModel"/>
-        </exports>
-        <property name="manager" type="string" isWritable="true"/>
-        <property name="availableManagers" type="QStringList"/>
-        <property name="error" type="string"/>
-        <property name="autoUpdate" type="bool" isWritable="true"/>
-        <property name="filter" type="QDeclarativeContactFilter" isWritable="true" isPointer="true"/>
-        <property name="fetchHint" type="QDeclarativeContactFetchHint" isWritable="true" isPointer="true"/>
-        <property name="contacts" type="QDeclarativeContact" isList="true"/>
-        <property name="sortOrders" type="QDeclarativeContactSortOrder" isList="true"/>
-        <signal name="managerChanged"/>
-        <signal name="filterChanged"/>
-        <signal name="errorChanged"/>
-        <signal name="fetchHintChanged"/>
-        <signal name="contactsChanged"/>
-        <signal name="vcardChanged"/>
-        <signal name="sortOrdersChanged"/>
-        <signal name="autoUpdateChanged"/>
-        <method name="update"/>
-        <method name="exportContacts">
-            <param name="url" type="QUrl"/>
-            <param name="profiles" type="QStringList"/>
-        </method>
-        <method name="exportContacts">
-            <param name="url" type="QUrl"/>
-        </method>
-        <method name="importContacts">
-            <param name="url" type="QUrl"/>
-            <param name="profiles" type="QStringList"/>
-        </method>
-        <method name="importContacts">
-            <param name="url" type="QUrl"/>
-        </method>
-        <method name="removeContacts">
-            <param name="ids" type="QList&lt;QContactLocalId&gt;"/>
-        </method>
-        <method name="fetchContacts">
-            <param name="contactIds" type="QList&lt;QContactLocalId&gt;"/>
-        </method>
-        <method name="removeContact">
-            <param name="id" type="QContactLocalId"/>
-        </method>
-        <method name="saveContact">
-            <param name="dc" type="QDeclarativeContact" isPointer="true"/>
-        </method>
-    </type>
-    <type name="QDeclarativeContactName" defaultProperty="firstName" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Name"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Prefix" value="0"/>
-            <enumerator name="FirstName" value="1"/>
-            <enumerator name="MiddleName" value="2"/>
-            <enumerator name="LastName" value="3"/>
-            <enumerator name="Suffix" value="4"/>
-            <enumerator name="CustomLabel" value="5"/>
-        </enum>
-        <property name="prefix" type="string" isWritable="true"/>
-        <property name="firstName" type="string" isWritable="true"/>
-        <property name="middleName" type="string" isWritable="true"/>
-        <property name="lastName" type="string" isWritable="true"/>
-        <property name="suffix" type="string" isWritable="true"/>
-        <property name="customLabel" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactNickname" defaultProperty="nickname" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Nickname"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="NickName" value="0"/>
-        </enum>
-        <property name="nickname" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactNote" defaultProperty="note" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Note"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Note" value="0"/>
-        </enum>
-        <property name="note" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactOnlineAccount" defaultProperty="accountUri" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="OnlineAccount"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="AccountUri" value="0"/>
-            <enumerator name="ServiceProvider" value="1"/>
-            <enumerator name="Capabilities" value="2"/>
-            <enumerator name="SubTypes" value="3"/>
-        </enum>
-        <enum name="OnlineAccountSubType">
-            <enumerator name="Unknown" value="0"/>
-            <enumerator name="Sip" value="1"/>
-            <enumerator name="SipVoip" value="2"/>
-            <enumerator name="Impp" value="3"/>
-            <enumerator name="VideoShare" value="4"/>
-        </enum>
-        <property name="accountUri" type="string" isWritable="true"/>
-        <property name="serviceProvider" type="string" isWritable="true"/>
-        <property name="capabilities" type="QStringList" isWritable="true"/>
-        <property name="subTypes" type="QVariantList" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactOrganization" defaultProperty="name" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Organization"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Name" value="0"/>
-            <enumerator name="LogoUrl" value="1"/>
-            <enumerator name="Department" value="2"/>
-            <enumerator name="Location" value="3"/>
-            <enumerator name="Role" value="4"/>
-            <enumerator name="Title" value="5"/>
-            <enumerator name="AssistantName" value="6"/>
-        </enum>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="logoUrl" type="QUrl" isWritable="true"/>
-        <property name="department" type="QStringList" isWritable="true"/>
-        <property name="location" type="string" isWritable="true"/>
-        <property name="role" type="string" isWritable="true"/>
-        <property name="title" type="string" isWritable="true"/>
-        <property name="assistantName" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactPhoneNumber" defaultProperty="number" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="PhoneNumber"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Number" value="0"/>
-            <enumerator name="SubTypes" value="1"/>
-        </enum>
-        <enum name="PhoneNumberSubType">
-            <enumerator name="Unknown" value="0"/>
-            <enumerator name="Landline" value="1"/>
-            <enumerator name="Mobile" value="2"/>
-            <enumerator name="Fax" value="3"/>
-            <enumerator name="Pager" value="4"/>
-            <enumerator name="Voice" value="5"/>
-            <enumerator name="Modem" value="6"/>
-            <enumerator name="Video" value="7"/>
-            <enumerator name="Car" value="8"/>
-            <enumerator name="BulletinBoardSystem" value="9"/>
-            <enumerator name="MessagingCapable" value="10"/>
-            <enumerator name="Assistant" value="11"/>
-            <enumerator name="DtmfMenu" value="12"/>
-        </enum>
-        <property name="number" type="string" isWritable="true"/>
-        <property name="subTypes" type="QVariantList" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactPresence" defaultProperty="state" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Presence"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Timestamp" value="0"/>
-            <enumerator name="Nickname" value="1"/>
-            <enumerator name="State" value="2"/>
-            <enumerator name="StateText" value="3"/>
-            <enumerator name="ImageUrl" value="4"/>
-            <enumerator name="CustomMessage" value="5"/>
-        </enum>
-        <enum name="PresenceStateType">
-            <enumerator name="Unknown" value="0"/>
-            <enumerator name="Available" value="1"/>
-            <enumerator name="Hidden" value="2"/>
-            <enumerator name="Busy" value="3"/>
-            <enumerator name="Away" value="4"/>
-            <enumerator name="ExtendedAway" value="5"/>
-            <enumerator name="Offline" value="6"/>
-        </enum>
-        <property name="timestamp" type="QDateTime" isWritable="true"/>
-        <property name="nickname" type="string" isWritable="true"/>
-        <property name="state" type="PresenceStateType" isWritable="true"/>
-        <property name="stateText" type="string" isWritable="true"/>
-        <property name="imageUrl" type="QUrl" isWritable="true"/>
-        <property name="customMessage" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactRelationship" extends="QObject">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Relationship"/>
-        </exports>
-        <enum name="RelationshipRole">
-            <enumerator name="First" value="0"/>
-            <enumerator name="Second" value="1"/>
-            <enumerator name="Either" value="2"/>
-        </enum>
-        <enum name="RelationshipType">
-            <enumerator name="Unknown" value="0"/>
-            <enumerator name="HasMember" value="1"/>
-            <enumerator name="Aggregates" value="2"/>
-            <enumerator name="IsSameAs" value="3"/>
-            <enumerator name="HasAssistant" value="4"/>
-            <enumerator name="HasManager" value="5"/>
-            <enumerator name="HasSpouse" value="6"/>
-        </enum>
-        <property name="first" type="QContactLocalId" isWritable="true"/>
-        <property name="second" type="QContactLocalId" isWritable="true"/>
-        <property name="type" type="QVariant" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeContactRelationshipFilter" extends="QDeclarativeContactFilter">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="RelationshipFilter"/>
-        </exports>
-        <property name="relationshipType" type="QVariant" isWritable="true"/>
-        <property name="relatedContactId" type="QContactLocalId" isWritable="true"/>
-        <property name="relatedContactRole" type="QDeclarativeContactRelationship.RelationshipRole" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeContactRingtone" defaultProperty="audioRingtoneUrl" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Ringtone"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="AudioRingtoneUrl" value="0"/>
-            <enumerator name="VideoRingtoneUrl" value="1"/>
-            <enumerator name="VibrationRingtoneUrl" value="2"/>
-        </enum>
-        <property name="audioRingtoneUrl" type="QUrl" isWritable="true"/>
-        <property name="videoRingtoneUrl" type="QUrl" isWritable="true"/>
-        <property name="vibrationRingtoneUrl" type="QUrl" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactSortOrder" extends="QObject">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="SortOrder"/>
-        </exports>
-        <enum name="BlankPolicy">
-            <enumerator name="BlanksFirst" value="0"/>
-            <enumerator name="BlanksLast" value="1"/>
-        </enum>
-        <property name="detail" type="QDeclarativeContactDetail.ContactDetailType" isWritable="true"/>
-        <property name="field" type="int" isWritable="true"/>
-        <property name="direction" type="Qt.SortOrder" isWritable="true"/>
-        <property name="blankPolicy" type="BlankPolicy" isWritable="true"/>
-        <property name="caseSensitivity" type="Qt.CaseSensitivity" isWritable="true"/>
-        <signal name="sortOrderChanged"/>
-    </type>
-    <type name="QDeclarativeContactSyncTarget" defaultProperty="syncTarget" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="SyncTarget"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="SyncTarget" value="0"/>
-        </enum>
-        <property name="syncTarget" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactTag" defaultProperty="tag" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Tag"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Tag" value="0"/>
-        </enum>
-        <property name="tag" type="string" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactTimestamp" defaultProperty="lastModified" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Timestamp"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="LastModified" value="0"/>
-            <enumerator name="Created" value="1"/>
-        </enum>
-        <property name="lastModified" type="QDateTime" isWritable="true"/>
-        <property name="created" type="QDateTime" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeContactUnionFilter" defaultProperty="filters" extends="QDeclarativeContactFilter">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="UnionFilter"/>
-        </exports>
-        <property name="filters" type="QDeclarativeContactFilter" isList="true"/>
-        <signal name="valueChanged"/>
-        <method name="setFilters"/>
-    </type>
-    <type name="QDeclarativeContactUrl" defaultProperty="url" extends="QDeclarativeContactDetail">
-        <exports>
-            <export module="QtMobility.contacts" version="1.1" type="Url"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Url" value="0"/>
-            <enumerator name="SubType" value="1"/>
-        </enum>
-        <enum name="UrlSubType">
-            <enumerator name="Unknown" value="0"/>
-            <enumerator name="HomePage" value="1"/>
-            <enumerator name="Favourite" value="2"/>
-        </enum>
-        <property name="url" type="string" isWritable="true"/>
-        <property name="subType" type="UrlSubType" isWritable="true"/>
-        <signal name="fieldsChanged"/>
-    </type>
-    <type name="QDeclarativeCoordinate" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="Coordinate"/>
-        </exports>
-        <property name="latitude" type="double" isWritable="true"/>
-        <property name="longitude" type="double" isWritable="true"/>
-        <property name="altitude" type="double" isWritable="true"/>
-        <signal name="latitudeChanged">
-            <param name="latitude" type="double"/>
-        </signal>
-        <signal name="longitudeChanged">
-            <param name="longitude" type="double"/>
-        </signal>
-        <signal name="altitudeChanged">
-            <param name="altitude" type="double"/>
-        </signal>
-        <method name="distanceTo" type="qreal">
-            <param name="coordinate" type="QObject" isPointer="true"/>
-        </method>
-    </type>
-    <type name="QDeclarativeCurve" extends="QDeclarativePathElement">
-        <property name="x" type="qreal" isWritable="true"/>
-        <property name="y" type="qreal" isWritable="true"/>
-        <signal name="xChanged"/>
-        <signal name="yChanged"/>
-    </type>
-    <type name="QDeclarativeDeviceInfo" extends="QSystemDeviceInfo">
-        <exports>
-            <export module="QtMobility.systeminfo" version="1.1" type="DeviceInfo"/>
-        </exports>
-        <signal name="batteryLevelChanged">
-            <param name="level" type="int"/>
-        </signal>
-        <signal name="batteryStatusChanged">
-            <param name="batteryStatus" type="QSystemDeviceInfo.BatteryStatus"/>
-        </signal>
-        <signal name="powerStateChanged">
-            <param name="powerState" type="QSystemDeviceInfo.PowerState"/>
-        </signal>
-        <signal name="currentProfileChanged">
-            <param name="currentProfile" type="QSystemDeviceInfo.Profile"/>
-        </signal>
-        <signal name="bluetoothStateChanged">
-            <param name="on" type="bool"/>
-        </signal>
-        <method name="startBatteryLevelChanged"/>
-        <method name="startBatteryStatusChanged"/>
-        <method name="startPowerStateChanged"/>
-        <method name="startCurrentProfileChanged"/>
-        <method name="startBluetoothStateChanged"/>
-    </type>
-    <type name="QDeclarativeDocumentGallery" extends="QObject">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="DocumentGallery"/>
-        </exports>
-        <enum name="ItemType">
-            <enumerator name="InvalidType" value="0"/>
-            <enumerator name="File" value="1"/>
-            <enumerator name="Folder" value="2"/>
-            <enumerator name="Document" value="3"/>
-            <enumerator name="Text" value="4"/>
-            <enumerator name="Audio" value="5"/>
-            <enumerator name="Image" value="6"/>
-            <enumerator name="Video" value="7"/>
-            <enumerator name="Playlist" value="8"/>
-            <enumerator name="Artist" value="9"/>
-            <enumerator name="AlbumArtist" value="10"/>
-            <enumerator name="Album" value="11"/>
-            <enumerator name="AudioGenre" value="12"/>
-            <enumerator name="PhotoAlbum" value="13"/>
-        </enum>
-    </type>
-    <type name="QDeclarativeDocumentGalleryItem" extends="QDeclarativeGalleryItem">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="DocumentGalleryItem"/>
-        </exports>
-        <property name="itemType" type="QDeclarativeDocumentGallery.ItemType"/>
-        <signal name="itemTypeChanged"/>
-    </type>
-    <type name="QDeclarativeDocumentGalleryModel" extends="QDeclarativeGalleryQueryModel">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="DocumentGalleryModel"/>
-        </exports>
-        <property name="rootType" type="QDeclarativeDocumentGallery.ItemType" isWritable="true"/>
-        <signal name="rootTypeChanged"/>
-    </type>
-    <type name="QDeclarativeDocumentGalleryType" extends="QDeclarativeGalleryType">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="DocumentGalleryType"/>
-        </exports>
-        <property name="itemType" type="QDeclarativeDocumentGallery.ItemType" isWritable="true"/>
-        <signal name="itemTypeChanged"/>
-    </type>
-    <type name="QDeclarativeDrag" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Drag"/>
-            <export module="QtQuick" version="1.0" type="Drag"/>
-        </exports>
-        <enum name="Axis">
-            <enumerator name="XAxis" value="1"/>
-            <enumerator name="YAxis" value="2"/>
-            <enumerator name="XandYAxis" value="3"/>
-        </enum>
-        <property name="target" type="QGraphicsObject" isWritable="true" isPointer="true"/>
-        <property name="axis" type="Axis" isWritable="true"/>
-        <property name="minimumX" type="qreal" isWritable="true"/>
-        <property name="maximumX" type="qreal" isWritable="true"/>
-        <property name="minimumY" type="qreal" isWritable="true"/>
-        <property name="maximumY" type="qreal" isWritable="true"/>
-        <property name="active" type="bool"/>
-        <property name="filterChildren" type="bool" isWritable="true"/>
-        <signal name="targetChanged"/>
-        <signal name="axisChanged"/>
-        <signal name="minimumXChanged"/>
-        <signal name="maximumXChanged"/>
-        <signal name="minimumYChanged"/>
-        <signal name="maximumYChanged"/>
-        <signal name="activeChanged"/>
-        <signal name="filterChildrenChanged"/>
-    </type>
-    <type name="QDeclarativeEasingValueType" extends="QDeclarativeValueType">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Easing"/>
-            <export module="Qt" version="4.7" type="Easing"/>
-        </exports>
-        <enum name="Type">
-            <enumerator name="Linear" value="0"/>
-            <enumerator name="InQuad" value="1"/>
-            <enumerator name="OutQuad" value="2"/>
-            <enumerator name="InOutQuad" value="3"/>
-            <enumerator name="OutInQuad" value="4"/>
-            <enumerator name="InCubic" value="5"/>
-            <enumerator name="OutCubic" value="6"/>
-            <enumerator name="InOutCubic" value="7"/>
-            <enumerator name="OutInCubic" value="8"/>
-            <enumerator name="InQuart" value="9"/>
-            <enumerator name="OutQuart" value="10"/>
-            <enumerator name="InOutQuart" value="11"/>
-            <enumerator name="OutInQuart" value="12"/>
-            <enumerator name="InQuint" value="13"/>
-            <enumerator name="OutQuint" value="14"/>
-            <enumerator name="InOutQuint" value="15"/>
-            <enumerator name="OutInQuint" value="16"/>
-            <enumerator name="InSine" value="17"/>
-            <enumerator name="OutSine" value="18"/>
-            <enumerator name="InOutSine" value="19"/>
-            <enumerator name="OutInSine" value="20"/>
-            <enumerator name="InExpo" value="21"/>
-            <enumerator name="OutExpo" value="22"/>
-            <enumerator name="InOutExpo" value="23"/>
-            <enumerator name="OutInExpo" value="24"/>
-            <enumerator name="InCirc" value="25"/>
-            <enumerator name="OutCirc" value="26"/>
-            <enumerator name="InOutCirc" value="27"/>
-            <enumerator name="OutInCirc" value="28"/>
-            <enumerator name="InElastic" value="29"/>
-            <enumerator name="OutElastic" value="30"/>
-            <enumerator name="InOutElastic" value="31"/>
-            <enumerator name="OutInElastic" value="32"/>
-            <enumerator name="InBack" value="33"/>
-            <enumerator name="OutBack" value="34"/>
-            <enumerator name="InOutBack" value="35"/>
-            <enumerator name="OutInBack" value="36"/>
-            <enumerator name="InBounce" value="37"/>
-            <enumerator name="OutBounce" value="38"/>
-            <enumerator name="InOutBounce" value="39"/>
-            <enumerator name="OutInBounce" value="40"/>
-            <enumerator name="InCurve" value="41"/>
-            <enumerator name="OutCurve" value="42"/>
-            <enumerator name="SineCurve" value="43"/>
-            <enumerator name="CosineCurve" value="44"/>
-        </enum>
-        <property name="type" type="Type" isWritable="true"/>
-        <property name="amplitude" type="qreal" isWritable="true"/>
-        <property name="overshoot" type="qreal" isWritable="true"/>
-        <property name="period" type="qreal" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeFeedback" extends="QObject">
-        <exports>
-            <export module="QtMobility.feedback" version="1.1" type="Feedback"/>
-        </exports>
-        <enum name="Duration">
-            <enumerator name="Infinite" value="-1"/>
-        </enum>
-        <enum name="State">
-            <enumerator name="Stopped" value="0"/>
-            <enumerator name="Paused" value="1"/>
-            <enumerator name="Running" value="2"/>
-            <enumerator name="Loading" value="3"/>
-        </enum>
-        <enum name="ErrorType">
-            <enumerator name="UnknownError" value="0"/>
-            <enumerator name="DeviceBusy" value="1"/>
-        </enum>
-    </type>
-    <type name="QDeclarativeFileEffect" extends="QFeedbackFileEffect">
-        <exports>
-            <export module="QtMobility.feedback" version="1.1" type="FileEffect"/>
-        </exports>
-        <property name="running" type="bool" isWritable="true"/>
-        <property name="paused" type="bool" isWritable="true"/>
-        <signal name="runningChanged"/>
-        <signal name="pausedChanged"/>
-        <method name="updateState"/>
-    </type>
-    <type name="QDeclarativeFlickable" defaultProperty="flickableData" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Flickable"/>
-            <export module="Qt" version="4.7" type="Flickable"/>
-        </exports>
-        <enum name="BoundsBehavior">
-            <enumerator name="StopAtBounds" value="0"/>
-            <enumerator name="DragOverBounds" value="1"/>
-            <enumerator name="DragAndOvershootBounds" value="2"/>
-        </enum>
-        <enum name="FlickableDirection">
-            <enumerator name="AutoFlickDirection" value="0"/>
-            <enumerator name="HorizontalFlick" value="1"/>
-            <enumerator name="VerticalFlick" value="2"/>
-            <enumerator name="HorizontalAndVerticalFlick" value="3"/>
-        </enum>
-        <property name="contentWidth" type="qreal" isWritable="true"/>
-        <property name="contentHeight" type="qreal" isWritable="true"/>
-        <property name="contentX" type="qreal" isWritable="true"/>
-        <property name="contentY" type="qreal" isWritable="true"/>
-        <property name="contentItem" type="QDeclarativeItem" isPointer="true"/>
-        <property name="horizontalVelocity" type="qreal"/>
-        <property name="verticalVelocity" type="qreal"/>
-        <property name="boundsBehavior" type="BoundsBehavior" isWritable="true"/>
-        <property name="maximumFlickVelocity" type="qreal" isWritable="true"/>
-        <property name="flickDeceleration" type="qreal" isWritable="true"/>
-        <property name="moving" type="bool"/>
-        <property name="movingHorizontally" type="bool"/>
-        <property name="movingVertically" type="bool"/>
-        <property name="flicking" type="bool"/>
-        <property name="flickingHorizontally" type="bool"/>
-        <property name="flickingVertically" type="bool"/>
-        <property name="flickableDirection" type="FlickableDirection" isWritable="true"/>
-        <property name="interactive" type="bool" isWritable="true"/>
-        <property name="pressDelay" type="int" isWritable="true"/>
-        <property name="atXEnd" type="bool"/>
-        <property name="atYEnd" type="bool"/>
-        <property name="atXBeginning" type="bool"/>
-        <property name="atYBeginning" type="bool"/>
-        <property name="visibleArea" type="QDeclarativeFlickableVisibleArea" isPointer="true"/>
-        <property name="flickableData" type="QObject" isList="true"/>
-        <property name="flickableChildren" type="QGraphicsObject" isList="true"/>
-        <signal name="contentWidthChanged"/>
-        <signal name="contentHeightChanged"/>
-        <signal name="contentXChanged"/>
-        <signal name="contentYChanged"/>
-        <signal name="movingChanged"/>
-        <signal name="movingHorizontallyChanged"/>
-        <signal name="movingVerticallyChanged"/>
-        <signal name="flickingChanged"/>
-        <signal name="flickingHorizontallyChanged"/>
-        <signal name="flickingVerticallyChanged"/>
-        <signal name="horizontalVelocityChanged"/>
-        <signal name="verticalVelocityChanged"/>
-        <signal name="isAtBoundaryChanged"/>
-        <signal name="pageChanged"/>
-        <signal name="flickableDirectionChanged"/>
-        <signal name="interactiveChanged"/>
-        <signal name="boundsBehaviorChanged"/>
-        <signal name="maximumFlickVelocityChanged"/>
-        <signal name="flickDecelerationChanged"/>
-        <signal name="pressDelayChanged"/>
-        <signal name="movementStarted"/>
-        <signal name="movementEnded"/>
-        <signal name="flickStarted"/>
-        <signal name="flickEnded"/>
-    </type>
-    <type name="QDeclarativeFlickableVisibleArea" extends="QObject">
-        <property name="xPosition" type="qreal"/>
-        <property name="yPosition" type="qreal"/>
-        <property name="widthRatio" type="qreal"/>
-        <property name="heightRatio" type="qreal"/>
-        <signal name="pageChanged"/>
-    </type>
-    <type name="QDeclarativeFlipable" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="Qt" version="4.7" type="Flipable"/>
-            <export module="QtQuick" version="1.0" type="Flipable"/>
-        </exports>
-        <enum name="Side">
-            <enumerator name="Front" value="0"/>
-            <enumerator name="Back" value="1"/>
-        </enum>
-        <property name="front" type="QGraphicsObject" isWritable="true" isPointer="true"/>
-        <property name="back" type="QGraphicsObject" isWritable="true" isPointer="true"/>
-        <property name="side" type="Side"/>
-        <signal name="sideChanged"/>
-    </type>
-    <type name="QDeclarativeFlow" defaultProperty="data" extends="QDeclarativeBasePositioner">
-        <exports>
-            <export module="Qt" version="4.7" type="Flow"/>
-            <export module="QtQuick" version="1.0" type="Flow"/>
-        </exports>
-        <enum name="Flow">
-            <enumerator name="LeftToRight" value="0"/>
-            <enumerator name="TopToBottom" value="1"/>
-        </enum>
-        <property name="flow" type="Flow" isWritable="true"/>
-        <signal name="flowChanged"/>
-    </type>
-    <type name="QDeclarativeFocusPanel" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="Qt" version="4.7" type="FocusPanel"/>
-            <export module="QtQuick" version="1.0" type="FocusPanel"/>
-        </exports>
-        <property name="active" type="bool" isWritable="true"/>
-        <signal name="activeChanged"/>
-    </type>
-    <type name="QDeclarativeFocusScope" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="Qt" version="4.7" type="FocusScope"/>
-            <export module="QtQuick" version="1.0" type="FocusScope"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeFolderListModel" extends="QAbstractListModel">
-        <exports>
-            <export module="Qt.labs.folderlistmodel" version="1.0" type="FolderListModel"/>
-        </exports>
-        <enum name="SortField">
-            <enumerator name="Unsorted" value="0"/>
-            <enumerator name="Name" value="1"/>
-            <enumerator name="Time" value="2"/>
-            <enumerator name="Size" value="3"/>
-            <enumerator name="Type" value="4"/>
-        </enum>
-        <property name="folder" type="QUrl" isWritable="true"/>
-        <property name="parentFolder" type="QUrl"/>
-        <property name="nameFilters" type="QStringList" isWritable="true"/>
-        <property name="sortField" type="SortField" isWritable="true"/>
-        <property name="sortReversed" type="bool" isWritable="true"/>
-        <property name="showDirs" type="bool" isWritable="true"/>
-        <property name="showDotAndDotDot" type="bool" isWritable="true"/>
-        <property name="showOnlyReadable" type="bool" isWritable="true"/>
-        <property name="count" type="int"/>
-        <signal name="folderChanged"/>
-        <method name="isFolder" type="bool">
-            <param name="index" type="int"/>
-        </method>
-    </type>
-    <type name="QDeclarativeFontLoader" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="FontLoader"/>
-            <export module="Qt" version="4.7" type="FontLoader"/>
-        </exports>
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Ready" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Error" value="3"/>
-        </enum>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="status" type="Status"/>
-        <signal name="sourceChanged"/>
-        <signal name="nameChanged"/>
-        <signal name="statusChanged"/>
-    </type>
-    <type name="QDeclarativeFontValueType" extends="QDeclarativeValueType">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Font"/>
-            <export module="Qt" version="4.7" type="Font"/>
-        </exports>
-        <enum name="FontWeight">
-            <enumerator name="Light" value="25"/>
-            <enumerator name="Normal" value="50"/>
-            <enumerator name="DemiBold" value="63"/>
-            <enumerator name="Bold" value="75"/>
-            <enumerator name="Black" value="87"/>
-        </enum>
-        <enum name="Capitalization">
-            <enumerator name="MixedCase" value="0"/>
-            <enumerator name="AllUppercase" value="1"/>
-            <enumerator name="AllLowercase" value="2"/>
-            <enumerator name="SmallCaps" value="3"/>
-            <enumerator name="Capitalize" value="4"/>
-        </enum>
-        <property name="family" type="string" isWritable="true"/>
-        <property name="bold" type="bool" isWritable="true"/>
-        <property name="weight" type="FontWeight" isWritable="true"/>
-        <property name="italic" type="bool" isWritable="true"/>
-        <property name="underline" type="bool" isWritable="true"/>
-        <property name="overline" type="bool" isWritable="true"/>
-        <property name="strikeout" type="bool" isWritable="true"/>
-        <property name="pointSize" type="qreal" isWritable="true"/>
-        <property name="pixelSize" type="int" isWritable="true"/>
-        <property name="capitalization" type="Capitalization" isWritable="true"/>
-        <property name="letterSpacing" type="qreal" isWritable="true"/>
-        <property name="wordSpacing" type="qreal" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeGalleryContainsFilter" extends="QDeclarativeGalleryStringFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryContainsFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryEndsWithFilter" extends="QDeclarativeGalleryStringFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryEndsWithFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryEqualsFilter" extends="QDeclarativeGalleryValueFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryEqualsFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryFilterBase" extends="QObject">
-        <signal name="filterChanged"/>
-    </type>
-    <type name="QDeclarativeGalleryFilterGroup" defaultProperty="filters" extends="QDeclarativeGalleryFilterBase">
-        <property name="filters" type="QDeclarativeGalleryFilterBase" isList="true"/>
-    </type>
-    <type name="QDeclarativeGalleryFilterIntersection" defaultProperty="filters" extends="QDeclarativeGalleryFilterGroup">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryFilterIntersection"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryFilterUnion" defaultProperty="filters" extends="QDeclarativeGalleryFilterGroup">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryFilterUnion"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryGreaterThanEqualsFilter" extends="QDeclarativeGalleryValueFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryGreaterThanEqualsFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryGreaterThanFilter" extends="QDeclarativeGalleryValueFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryGreaterThanFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryItem" extends="QObject">
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Active" value="1"/>
-            <enumerator name="Canceling" value="2"/>
-            <enumerator name="Canceled" value="3"/>
-            <enumerator name="Idle" value="4"/>
-            <enumerator name="Finished" value="5"/>
-            <enumerator name="Error" value="6"/>
-        </enum>
-        <property name="status" type="Status"/>
-        <property name="progress" type="qreal"/>
-        <property name="properties" type="QStringList" isWritable="true"/>
-        <property name="autoUpdate" type="bool" isWritable="true"/>
-        <property name="item" type="QVariant" isWritable="true"/>
-        <property name="available" type="bool"/>
-        <property name="itemUrl" type="QUrl"/>
-        <property name="metaData" type="QObject" isPointer="true"/>
-        <signal name="statusChanged"/>
-        <signal name="progressChanged"/>
-        <signal name="availableChanged"/>
-        <signal name="metaDataChanged"/>
-        <signal name="galleryChanged"/>
-        <signal name="propertyNamesChanged"/>
-        <signal name="autoUpdateChanged"/>
-        <signal name="itemIdChanged"/>
-        <method name="reload"/>
-        <method name="cancel"/>
-        <method name="clear"/>
-    </type>
-    <type name="QDeclarativeGalleryLessThanEqualsFilter" extends="QDeclarativeGalleryValueFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryLessThanEqualsFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryLessThanFilter" extends="QDeclarativeGalleryValueFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryLessThanFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryQueryModel" extends="QAbstractListModel">
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Active" value="1"/>
-            <enumerator name="Canceling" value="2"/>
-            <enumerator name="Canceled" value="3"/>
-            <enumerator name="Idle" value="4"/>
-            <enumerator name="Finished" value="5"/>
-            <enumerator name="Error" value="6"/>
-        </enum>
-        <enum name="Scope">
-            <enumerator name="AllDescendants" value="0"/>
-            <enumerator name="DirectDescendants" value="1"/>
-        </enum>
-        <property name="status" type="Status"/>
-        <property name="progress" type="qreal"/>
-        <property name="properties" type="QStringList" isWritable="true"/>
-        <property name="sortProperties" type="QStringList" isWritable="true"/>
-        <property name="autoUpdate" type="bool" isWritable="true"/>
-        <property name="rootItem" type="QVariant" isWritable="true"/>
-        <property name="scope" type="Scope" isWritable="true"/>
-        <property name="offset" type="int" isWritable="true"/>
-        <property name="limit" type="int" isWritable="true"/>
-        <property name="count" type="int"/>
-        <property name="filter" type="QDeclarativeGalleryFilterBase" isWritable="true" isPointer="true"/>
-        <signal name="statusChanged"/>
-        <signal name="progressChanged"/>
-        <signal name="propertyNamesChanged"/>
-        <signal name="sortPropertyNamesChanged"/>
-        <signal name="autoUpdateChanged"/>
-        <signal name="rootItemChanged"/>
-        <signal name="scopeChanged"/>
-        <signal name="filterChanged"/>
-        <signal name="offsetChanged"/>
-        <signal name="limitChanged"/>
-        <signal name="countChanged"/>
-        <method name="reload"/>
-        <method name="cancel"/>
-        <method name="clear"/>
-        <method name="get" type="QScriptValue">
-            <param name="index" type="QScriptValue"/>
-        </method>
-        <method name="property" type="QVariant">
-            <param name="index" type="int"/>
-            <param name="property" type="string"/>
-        </method>
-        <method name="set">
-            <param name="index" type="int"/>
-            <param name="value" type="QScriptValue"/>
-        </method>
-        <method name="setProperty">
-            <param name="index" type="int"/>
-            <param name="property" type="string"/>
-            <param name="value" type="QVariant"/>
-        </method>
-    </type>
-    <type name="QDeclarativeGalleryStartsWithFilter" extends="QDeclarativeGalleryStringFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryStartsWithFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGalleryStringFilter" extends="QDeclarativeGalleryFilterBase">
-        <property name="property" type="string" isWritable="true"/>
-        <property name="value" type="string" isWritable="true"/>
-        <property name="negated" type="bool" isWritable="true"/>
-        <signal name="propertyNameChanged"/>
-        <signal name="valueChanged"/>
-        <signal name="negatedChanged"/>
-    </type>
-    <type name="QDeclarativeGalleryType" extends="QObject">
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Active" value="1"/>
-            <enumerator name="Canceling" value="2"/>
-            <enumerator name="Canceled" value="3"/>
-            <enumerator name="Idle" value="4"/>
-            <enumerator name="Finished" value="5"/>
-            <enumerator name="Error" value="6"/>
-        </enum>
-        <property name="status" type="Status"/>
-        <property name="progress" type="qreal"/>
-        <property name="properties" type="QStringList" isWritable="true"/>
-        <property name="autoUpdate" type="bool" isWritable="true"/>
-        <property name="available" type="bool"/>
-        <property name="metaData" type="QObject" isPointer="true"/>
-        <signal name="statusChanged"/>
-        <signal name="progressChanged"/>
-        <signal name="availableChanged"/>
-        <signal name="metaDataChanged"/>
-        <signal name="galleryChanged"/>
-        <signal name="propertyNamesChanged"/>
-        <signal name="autoUpdateChanged"/>
-        <method name="reload"/>
-        <method name="cancel"/>
-        <method name="clear"/>
-    </type>
-    <type name="QDeclarativeGalleryValueFilter" extends="QDeclarativeGalleryFilterBase">
-        <property name="property" type="string" isWritable="true"/>
-        <property name="value" type="QVariant" isWritable="true"/>
-        <property name="negated" type="bool" isWritable="true"/>
-        <signal name="propertyNameChanged"/>
-        <signal name="valueChanged"/>
-        <signal name="negatedChanged"/>
-    </type>
-    <type name="QDeclarativeGalleryWildcardFilter" extends="QDeclarativeGalleryStringFilter">
-        <exports>
-            <export module="QtMobility.gallery" version="1.1" type="GalleryWildcardFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeGeneralInfo" extends="QSystemInfo">
-        <exports>
-            <export module="QtMobility.systeminfo" version="1.1" type="GeneralInfo"/>
-        </exports>
-        <signal name="currentLanguageChanged">
-            <param name="language" type="string"/>
-        </signal>
-        <method name="startCurrentLanguageChanged"/>
-    </type>
-    <type name="QDeclarativeGeoAddress" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="Address"/>
-        </exports>
-        <property name="country" type="string" isWritable="true"/>
-        <property name="countryCode" type="string" isWritable="true"/>
-        <property name="state" type="string" isWritable="true"/>
-        <property name="county" type="string" isWritable="true"/>
-        <property name="city" type="string" isWritable="true"/>
-        <property name="district" type="string" isWritable="true"/>
-        <property name="street" type="string" isWritable="true"/>
-        <property name="postcode" type="string" isWritable="true"/>
-        <signal name="countryChanged"/>
-        <signal name="countryCodeChanged"/>
-        <signal name="stateChanged"/>
-        <signal name="countyChanged"/>
-        <signal name="cityChanged"/>
-        <signal name="districtChanged"/>
-        <signal name="streetChanged"/>
-        <signal name="postcodeChanged"/>
-    </type>
-    <type name="QDeclarativeGeoBoundingBox" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="BoundingBox"/>
-        </exports>
-        <property name="bottomLeft" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="bottomRight" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="topLeft" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="topRight" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="center" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="height" type="double" isWritable="true"/>
-        <property name="width" type="double" isWritable="true"/>
-        <signal name="bottomLeftChanged"/>
-        <signal name="bottomRightChanged"/>
-        <signal name="topLeftChanged"/>
-        <signal name="topRightChanged"/>
-        <signal name="centerChanged"/>
-        <signal name="heightChanged"/>
-        <signal name="widthChanged"/>
-    </type>
-    <type name="QDeclarativeGeoMapCircleObject" extends="QGeoMapCircleObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="MapCircle"/>
-        </exports>
-        <property name="center" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="border" type="QDeclarativeGeoMapObjectBorder" isPointer="true"/>
-        <signal name="declarativeCenterChanged">
-            <param name="center" type="const QDeclarativeCoordinate" isPointer="true"/>
-        </signal>
-        <signal name="colorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGeoMapObject" defaultProperty="objects" extends="QGeoMapGroupObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="MapGroup"/>
-        </exports>
-        <property name="objects" type="QGeoMapObject" isList="true"/>
-    </type>
-    <type name="QDeclarativeGeoMapObjectBorder" extends="QObject">
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="width" type="int" isWritable="true"/>
-        <signal name="colorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="widthChanged">
-            <param name="width" type="int"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGeoMapPixmapObject" extends="QGeoMapPixmapObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="MapImage"/>
-        </exports>
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Ready" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Error" value="3"/>
-        </enum>
-        <property name="coordinate" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="status" type="Status"/>
-        <signal name="declarativeCoordinateChanged">
-            <param name="coordinate" type="const QDeclarativeCoordinate" isPointer="true"/>
-        </signal>
-        <signal name="sourceChanged">
-            <param name="source" type="QUrl"/>
-        </signal>
-        <signal name="statusChanged">
-            <param name="status" type="QDeclarativeGeoMapPixmapObject.Status"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGeoMapPolygonObject" defaultProperty="path" extends="QGeoMapPolygonObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="MapPolygon"/>
-        </exports>
-        <property name="path" type="QDeclarativeCoordinate" isList="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="border" type="QDeclarativeGeoMapObjectBorder" isPointer="true"/>
-        <signal name="colorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGeoMapPolylineObject" defaultProperty="path" extends="QGeoMapPolylineObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="MapPolyline"/>
-        </exports>
-        <property name="path" type="QDeclarativeCoordinate" isList="true"/>
-        <property name="border" type="QDeclarativeGeoMapObjectBorder" isPointer="true"/>
-    </type>
-    <type name="QDeclarativeGeoMapRectangleObject" extends="QGeoMapRectangleObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="MapRectangle"/>
-        </exports>
-        <property name="topLeft" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="bottomRight" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="border" type="QDeclarativeGeoMapObjectBorder" isPointer="true"/>
-        <signal name="declarativeTopLeftChanged">
-            <param name="center" type="const QDeclarativeCoordinate" isPointer="true"/>
-        </signal>
-        <signal name="declarativeBottomRightChanged">
-            <param name="center" type="const QDeclarativeCoordinate" isPointer="true"/>
-        </signal>
-        <signal name="colorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGeoMapTextObject" extends="QGeoMapTextObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="MapText"/>
-        </exports>
-        <enum name="HorizontalAlignment">
-            <enumerator name="AlignHCenter" value="4"/>
-            <enumerator name="AlignLeft" value="1"/>
-            <enumerator name="AlignRight" value="2"/>
-        </enum>
-        <enum name="VerticalAlignment">
-            <enumerator name="AlignVCenter" value="128"/>
-            <enumerator name="AlignTop" value="32"/>
-            <enumerator name="AlignBottom" value="64"/>
-        </enum>
-        <property name="coordinate" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="horizontalAlignment" type="HorizontalAlignment" isWritable="true"/>
-        <property name="verticalAlignment" type="VerticalAlignment" isWritable="true"/>
-        <signal name="declarativeCoordinateChanged">
-            <param name="coordinate" type="const QDeclarativeCoordinate" isPointer="true"/>
-        </signal>
-        <signal name="colorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="horizontalAlignmentChanged">
-            <param name="alignment" type="HorizontalAlignment"/>
-        </signal>
-        <signal name="verticalAlignmentChanged">
-            <param name="alignment" type="VerticalAlignment"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGeoPlace" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="Place"/>
-        </exports>
-        <property name="viewport" type="QDeclarativeGeoBoundingBox" isWritable="true" isPointer="true"/>
-        <property name="coordinate" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="address" type="QDeclarativeGeoAddress" isWritable="true" isPointer="true"/>
-        <signal name="viewportChanged"/>
-        <signal name="coordinateChanged"/>
-        <signal name="addressChanged"/>
-    </type>
-    <type name="QDeclarativeGeoSearchModel" extends="QAbstractListModel">
-        <property name="plugin" type="QDeclarativeGeoServiceProvider" isWritable="true" isPointer="true"/>
-        <property name="error" type="string"/>
-        <signal name="pluginChanged">
-            <param name="plugin" type="QDeclarativeGeoServiceProvider" isPointer="true"/>
-        </signal>
-        <signal name="errorChanged">
-            <param name="error" type="string"/>
-        </signal>
-        <signal name="placesChanged"/>
-    </type>
-    <type name="QDeclarativeGeoServiceProvider" defaultProperty="parameters" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="Plugin"/>
-        </exports>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="parameters" type="QDeclarativeGeoServiceProviderParameter" isList="true"/>
-        <signal name="nameChanged">
-            <param name="name" type="string"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGeoServiceProviderParameter" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="PluginParameter"/>
-        </exports>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="value" type="QVariant" isWritable="true"/>
-        <signal name="nameChanged">
-            <param name="name" type="string"/>
-        </signal>
-        <signal name="valueChanged">
-            <param name="value" type="QVariant"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGeocodeModel" extends="QDeclarativeGeoSearchModel">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="GeocodeModel"/>
-        </exports>
-        <property name="address" type="QDeclarativeGeoAddress" isWritable="true" isPointer="true"/>
-        <signal name="addressChanged">
-            <param name="address" type="QDeclarativeGeoAddress" isPointer="true"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeGestureArea" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="Qt.labs.gestures" version="1.0" type="GestureArea"/>
-        </exports>
-        <property name="gesture" type="QGesture" isPointer="true"/>
-    </type>
-    <type name="QDeclarativeGradient" defaultProperty="stops" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Gradient"/>
-            <export module="Qt" version="4.7" type="Gradient"/>
-        </exports>
-        <property name="stops" type="QDeclarativeGradientStop" isList="true"/>
-        <signal name="updated"/>
-    </type>
-    <type name="QDeclarativeGradientStop" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="GradientStop"/>
-            <export module="QtQuick" version="1.0" type="GradientStop"/>
-        </exports>
-        <property name="position" type="qreal" isWritable="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeGraphicsGeoMap" defaultProperty="objects" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="Map"/>
-        </exports>
-        <enum name="MapType">
-            <enumerator name="NoMap" value="0"/>
-            <enumerator name="StreetMap" value="1"/>
-            <enumerator name="SatelliteMapDay" value="2"/>
-            <enumerator name="SatelliteMapNight" value="3"/>
-            <enumerator name="TerrainMap" value="4"/>
-        </enum>
-        <enum name="ConnectivityMode">
-            <enumerator name="NoConnectivity" value="0"/>
-            <enumerator name="OfflineMode" value="1"/>
-            <enumerator name="OnlineMode" value="2"/>
-            <enumerator name="HybridMode" value="3"/>
-        </enum>
-        <property name="plugin" type="QDeclarativeGeoServiceProvider" isWritable="true" isPointer="true"/>
-        <property name="size" type="QSizeF" isWritable="true"/>
-        <property name="minimumZoomLevel" type="qreal"/>
-        <property name="maximumZoomLevel" type="qreal"/>
-        <property name="zoomLevel" type="qreal" isWritable="true"/>
-        <property name="mapType" type="MapType" isWritable="true"/>
-        <property name="center" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="connectivityMode" type="ConnectivityMode" isWritable="true"/>
-        <property name="objects" type="QGeoMapObject" isList="true"/>
-        <signal name="pluginChanged">
-            <param name="plugin" type="QDeclarativeGeoServiceProvider" isPointer="true"/>
-        </signal>
-        <signal name="sizeChanged">
-            <param name="size" type="QSizeF"/>
-        </signal>
-        <signal name="zoomLevelChanged">
-            <param name="zoomLevel" type="qreal"/>
-        </signal>
-        <signal name="declarativeCenterChanged">
-            <param name="coordinate" type="const QDeclarativeCoordinate" isPointer="true"/>
-        </signal>
-        <signal name="mapTypeChanged">
-            <param name="mapType" type="QDeclarativeGraphicsGeoMap.MapType"/>
-        </signal>
-        <signal name="connectivityModeChanged">
-            <param name="connectivityMode" type="QDeclarativeGraphicsGeoMap.ConnectivityMode"/>
-        </signal>
-        <method name="pan">
-            <param name="dx" type="int"/>
-            <param name="dy" type="int"/>
-        </method>
-        <method name="toCoordinate" type="QDeclarativeCoordinate*">
-            <param name="screenPosition" type="QPointF"/>
-        </method>
-        <method name="toScreenPosition" type="QPointF">
-            <param name="coordinate" type="QDeclarativeCoordinate" isPointer="true"/>
-        </method>
-    </type>
-    <type name="QDeclarativeGrid" defaultProperty="data" extends="QDeclarativeBasePositioner">
-        <exports>
-            <export module="Qt" version="4.7" type="Grid"/>
-            <export module="QtQuick" version="1.0" type="Grid"/>
-        </exports>
-        <enum name="Flow">
-            <enumerator name="LeftToRight" value="0"/>
-            <enumerator name="TopToBottom" value="1"/>
-        </enum>
-        <property name="rows" type="int" isWritable="true"/>
-        <property name="columns" type="int" isWritable="true"/>
-        <property name="flow" type="Flow" isWritable="true"/>
-        <signal name="rowsChanged"/>
-        <signal name="columnsChanged"/>
-        <signal name="flowChanged"/>
-    </type>
-    <type name="QDeclarativeGridView" defaultProperty="data" extends="QDeclarativeFlickable">
-        <exports>
-            <export module="QtQuick" version="1.0" type="GridView"/>
-            <export module="Qt" version="4.7" type="GridView"/>
-        </exports>
-        <enum name="HighlightRangeMode">
-            <enumerator name="NoHighlightRange" value="0"/>
-            <enumerator name="ApplyRange" value="1"/>
-            <enumerator name="StrictlyEnforceRange" value="2"/>
-        </enum>
-        <enum name="Flow">
-            <enumerator name="LeftToRight" value="0"/>
-            <enumerator name="TopToBottom" value="1"/>
-        </enum>
-        <enum name="SnapMode">
-            <enumerator name="NoSnap" value="0"/>
-            <enumerator name="SnapToRow" value="1"/>
-            <enumerator name="SnapOneRow" value="2"/>
-        </enum>
-        <enum name="PositionMode">
-            <enumerator name="Beginning" value="0"/>
-            <enumerator name="Center" value="1"/>
-            <enumerator name="End" value="2"/>
-            <enumerator name="Visible" value="3"/>
-            <enumerator name="Contain" value="4"/>
-        </enum>
-        <property name="model" type="QVariant" isWritable="true"/>
-        <property name="delegate" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="currentIndex" type="int" isWritable="true"/>
-        <property name="currentItem" type="QDeclarativeItem" isPointer="true"/>
-        <property name="count" type="int"/>
-        <property name="highlight" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="highlightItem" type="QDeclarativeItem" isPointer="true"/>
-        <property name="highlightFollowsCurrentItem" type="bool" isWritable="true"/>
-        <property name="highlightMoveDuration" type="int" isWritable="true"/>
-        <property name="preferredHighlightBegin" type="qreal" isWritable="true"/>
-        <property name="preferredHighlightEnd" type="qreal" isWritable="true"/>
-        <property name="highlightRangeMode" type="HighlightRangeMode" isWritable="true"/>
-        <property name="flow" type="Flow" isWritable="true"/>
-        <property name="keyNavigationWraps" type="bool" isWritable="true"/>
-        <property name="cacheBuffer" type="int" isWritable="true"/>
-        <property name="cellWidth" type="int" isWritable="true"/>
-        <property name="cellHeight" type="int" isWritable="true"/>
-        <property name="snapMode" type="SnapMode" isWritable="true"/>
-        <property name="header" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="footer" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <signal name="countChanged"/>
-        <signal name="currentIndexChanged"/>
-        <signal name="cellWidthChanged"/>
-        <signal name="cellHeightChanged"/>
-        <signal name="highlightChanged"/>
-        <signal name="highlightItemChanged"/>
-        <signal name="preferredHighlightBeginChanged"/>
-        <signal name="preferredHighlightEndChanged"/>
-        <signal name="highlightRangeModeChanged"/>
-        <signal name="highlightMoveDurationChanged"/>
-        <signal name="modelChanged"/>
-        <signal name="delegateChanged"/>
-        <signal name="flowChanged"/>
-        <signal name="keyNavigationWrapsChanged"/>
-        <signal name="cacheBufferChanged"/>
-        <signal name="snapModeChanged"/>
-        <signal name="headerChanged"/>
-        <signal name="footerChanged"/>
-        <method name="moveCurrentIndexUp"/>
-        <method name="moveCurrentIndexDown"/>
-        <method name="moveCurrentIndexLeft"/>
-        <method name="moveCurrentIndexRight"/>
-        <method name="positionViewAtIndex">
-            <param name="index" type="int"/>
-            <param name="mode" type="int"/>
-        </method>
-        <method name="indexAt" type="int">
-            <param name="x" type="int"/>
-            <param name="y" type="int"/>
-        </method>
-    </type>
-    <type name="QDeclarativeHapticsEffect" extends="QFeedbackHapticsEffect">
-        <exports>
-            <export module="QtMobility.feedback" version="1.1" type="HapticsEffect"/>
-        </exports>
-        <property name="actuators" type="QFeedbackActuator" isList="true"/>
-        <property name="running" type="bool" isWritable="true"/>
-        <property name="paused" type="bool" isWritable="true"/>
-        <signal name="runningChanged"/>
-        <signal name="pausedChanged"/>
-        <signal name="actuatorsChanged"/>
-        <method name="updateState"/>
-    </type>
-    <type name="QDeclarativeImage" defaultProperty="data" extends="QDeclarativeImageBase">
-        <exports>
-            <export module="Qt" version="4.7" type="Image"/>
-            <export module="QtQuick" version="1.0" type="Image"/>
-        </exports>
-        <enum name="FillMode">
-            <enumerator name="Stretch" value="0"/>
-            <enumerator name="PreserveAspectFit" value="1"/>
-            <enumerator name="PreserveAspectCrop" value="2"/>
-            <enumerator name="Tile" value="3"/>
-            <enumerator name="TileVertically" value="4"/>
-            <enumerator name="TileHorizontally" value="5"/>
-        </enum>
-        <property name="fillMode" type="FillMode" isWritable="true"/>
-        <property name="paintedWidth" type="qreal"/>
-        <property name="paintedHeight" type="qreal"/>
-        <signal name="fillModeChanged"/>
-        <signal name="paintedGeometryChanged"/>
-    </type>
-    <type name="QDeclarativeImageBase" defaultProperty="data" extends="QDeclarativeItem">
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Ready" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Error" value="3"/>
-        </enum>
-        <property name="status" type="Status"/>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="progress" type="qreal"/>
-        <property name="asynchronous" type="bool" isWritable="true"/>
-        <property name="sourceSize" type="QSize" isWritable="true"/>
-        <signal name="sourceChanged">
-            <param type="QUrl"/>
-        </signal>
-        <signal name="sourceSizeChanged"/>
-        <signal name="statusChanged">
-            <param type="QDeclarativeImageBase.Status"/>
-        </signal>
-        <signal name="progressChanged">
-            <param name="progress" type="qreal"/>
-        </signal>
-        <signal name="asynchronousChanged"/>
-    </type>
-    <type name="QDeclarativeItem" defaultProperty="data" extends="QGraphicsObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Item"/>
-            <export module="Qt" version="4.7" type="Item"/>
-        </exports>
-        <enum name="TransformOrigin">
-            <enumerator name="TopLeft" value="0"/>
-            <enumerator name="Top" value="1"/>
-            <enumerator name="TopRight" value="2"/>
-            <enumerator name="Left" value="3"/>
-            <enumerator name="Center" value="4"/>
-            <enumerator name="Right" value="5"/>
-            <enumerator name="BottomLeft" value="6"/>
-            <enumerator name="Bottom" value="7"/>
-            <enumerator name="BottomRight" value="8"/>
-        </enum>
-        <property name="parent" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="data" type="QObject" isList="true"/>
-        <property name="resources" type="QObject" isList="true"/>
-        <property name="states" type="QDeclarativeState" isList="true"/>
-        <property name="transitions" type="QDeclarativeTransition" isList="true"/>
-        <property name="state" type="string" isWritable="true"/>
-        <property name="childrenRect" type="QRectF"/>
-        <property name="anchors" type="QDeclarativeAnchors" isPointer="true"/>
-        <property name="left" type="QDeclarativeAnchorLine"/>
-        <property name="right" type="QDeclarativeAnchorLine"/>
-        <property name="horizontalCenter" type="QDeclarativeAnchorLine"/>
-        <property name="top" type="QDeclarativeAnchorLine"/>
-        <property name="bottom" type="QDeclarativeAnchorLine"/>
-        <property name="verticalCenter" type="QDeclarativeAnchorLine"/>
-        <property name="baseline" type="QDeclarativeAnchorLine"/>
-        <property name="baselineOffset" type="qreal" isWritable="true"/>
-        <property name="clip" type="bool" isWritable="true"/>
-        <property name="focus" type="bool" isWritable="true"/>
-        <property name="activeFocus" type="bool"/>
-        <property name="transform" type="QGraphicsTransform" isList="true"/>
-        <property name="transformOrigin" type="TransformOrigin" isWritable="true"/>
-        <property name="transformOriginPoint" type="QPointF"/>
-        <property name="smooth" type="bool" isWritable="true"/>
-        <signal name="childrenRectChanged">
-            <param type="QRectF"/>
-        </signal>
-        <signal name="baselineOffsetChanged">
-            <param type="qreal"/>
-        </signal>
-        <signal name="stateChanged">
-            <param type="string"/>
-        </signal>
-        <signal name="focusChanged">
-            <param type="bool"/>
-        </signal>
-        <signal name="activeFocusChanged">
-            <param type="bool"/>
-        </signal>
-        <signal name="parentChanged">
-            <param type="QDeclarativeItem" isPointer="true"/>
-        </signal>
-        <signal name="transformOriginChanged">
-            <param type="TransformOrigin"/>
-        </signal>
-        <signal name="smoothChanged">
-            <param type="bool"/>
-        </signal>
-        <signal name="clipChanged">
-            <param type="bool"/>
-        </signal>
-        <method name="mapFromItem" type="QScriptValue">
-            <param name="item" type="QScriptValue"/>
-            <param name="x" type="qreal"/>
-            <param name="y" type="qreal"/>
-        </method>
-        <method name="mapToItem" type="QScriptValue">
-            <param name="item" type="QScriptValue"/>
-            <param name="x" type="qreal"/>
-            <param name="y" type="qreal"/>
-        </method>
-        <method name="forceActiveFocus"/>
-        <method name="childAt" type="QDeclarativeItem*">
-            <param name="x" type="qreal"/>
-            <param name="y" type="qreal"/>
-        </method>
-    </type>
-    <type name="QDeclarativeKeyNavigationAttached" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="KeyNavigation"/>
-            <export module="Qt" version="4.7" type="KeyNavigation"/>
-        </exports>
-        <enum name="Priority">
-            <enumerator name="BeforeItem" value="0"/>
-            <enumerator name="AfterItem" value="1"/>
-        </enum>
-        <property name="left" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="right" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="up" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="down" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="tab" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="backtab" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="priority" type="Priority" isWritable="true"/>
-        <signal name="leftChanged"/>
-        <signal name="rightChanged"/>
-        <signal name="upChanged"/>
-        <signal name="downChanged"/>
-        <signal name="tabChanged"/>
-        <signal name="backtabChanged"/>
-        <signal name="priorityChanged"/>
-    </type>
-    <type name="QDeclarativeKeysAttached" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Keys"/>
-            <export module="QtQuick" version="1.0" type="Keys"/>
-        </exports>
-        <enum name="Priority">
-            <enumerator name="BeforeItem" value="0"/>
-            <enumerator name="AfterItem" value="1"/>
-        </enum>
-        <property name="enabled" type="bool" isWritable="true"/>
-        <property name="forwardTo" type="QDeclarativeItem" isList="true"/>
-        <property name="priority" type="Priority" isWritable="true"/>
-        <signal name="enabledChanged"/>
-        <signal name="priorityChanged"/>
-        <signal name="pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="released">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit0Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit1Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit2Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit3Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit4Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit5Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit6Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit7Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit8Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="digit9Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="leftPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="rightPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="upPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="downPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="tabPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="backtabPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="asteriskPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="numberSignPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="escapePressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="returnPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="enterPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="deletePressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="spacePressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="backPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="cancelPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="selectPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="yesPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="noPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="context1Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="context2Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="context3Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="context4Pressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="callPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="hangupPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="flipPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="menuPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="volumeUpPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-        <signal name="volumeDownPressed">
-            <param name="event" type="QDeclarativeKeyEvent" isPointer="true"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeLandmark" extends="QDeclarativeGeoPlace">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="Landmark"/>
-        </exports>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="phoneNumber" type="string" isWritable="true"/>
-        <property name="description" type="string" isWritable="true"/>
-        <property name="radius" type="double" isWritable="true"/>
-        <property name="iconSource" type="QUrl" isWritable="true"/>
-        <property name="url" type="QUrl" isWritable="true"/>
-        <signal name="nameChanged"/>
-        <signal name="phoneNumberChanged"/>
-        <signal name="descriptionChanged"/>
-        <signal name="radiusChanged"/>
-        <signal name="iconSourceChanged"/>
-        <signal name="urlChanged"/>
-        <signal name="coordinateChanged"/>
-    </type>
-    <type name="QDeclarativeLandmarkAbstractModel" extends="QAbstractListModel">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkAbstractModel"/>
-        </exports>
-        <enum name="SortOrder">
-            <enumerator name="AscendingOrder" value="0"/>
-            <enumerator name="DescendingOrder" value="1"/>
-            <enumerator name="NoOrder" value="2"/>
-        </enum>
-        <enum name="SortKey">
-            <enumerator name="NoSort" value="0"/>
-            <enumerator name="NameSort" value="1"/>
-        </enum>
-        <property name="limit" type="int" isWritable="true"/>
-        <property name="offset" type="int" isWritable="true"/>
-        <property name="autoUpdate" type="bool" isWritable="true"/>
-        <property name="error" type="string"/>
-        <property name="sortBy" type="SortKey" isWritable="true"/>
-        <property name="sortOrder" type="SortOrder" isWritable="true"/>
-        <signal name="sortByChanged"/>
-        <signal name="sortOrderChanged"/>
-        <signal name="errorChanged"/>
-        <signal name="autoUpdateChanged"/>
-        <signal name="limitChanged"/>
-        <signal name="offsetChanged"/>
-        <signal name="modelChanged"/>
-        <signal name="databaseChanged"/>
-        <method name="update"/>
-        <method name="setDbFileName">
-            <param name="fileName" type="string"/>
-        </method>
-    </type>
-    <type name="QDeclarativeLandmarkBoxFilter" extends="QDeclarativeLandmarkFilterBase">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkBoxFilter"/>
-        </exports>
-        <property name="topLeft" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="bottomRight" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <signal name="topLeftChanged"/>
-        <signal name="bottomRightChanged"/>
-    </type>
-    <type name="QDeclarativeLandmarkCategory" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkCategory"/>
-        </exports>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="iconSource" type="QUrl" isWritable="true"/>
-        <signal name="nameChanged"/>
-        <signal name="iconSourceChanged"/>
-    </type>
-    <type name="QDeclarativeLandmarkCategoryFilter" extends="QDeclarativeLandmarkFilterBase">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkCategoryFilter"/>
-        </exports>
-        <property name="category" type="QDeclarativeLandmarkCategory" isWritable="true" isPointer="true"/>
-        <signal name="categoryChanged"/>
-    </type>
-    <type name="QDeclarativeLandmarkCategoryModel" extends="QDeclarativeLandmarkAbstractModel">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkCategoryModel"/>
-        </exports>
-        <property name="count" type="int"/>
-        <property name="landmark" type="QDeclarativeLandmark" isWritable="true" isPointer="true"/>
-        <property name="categories" type="QDeclarativeLandmarkCategory" isList="true"/>
-        <signal name="countChanged"/>
-        <signal name="landmarkChanged"/>
-        <signal name="categoriesChanged"/>
-    </type>
-    <type name="QDeclarativeLandmarkCompoundFilter" defaultProperty="filters" extends="QDeclarativeLandmarkFilterBase">
-        <property name="filters" type="QDeclarativeLandmarkFilterBase" isList="true"/>
-    </type>
-    <type name="QDeclarativeLandmarkFilterBase" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkFilterBase"/>
-        </exports>
-        <signal name="filterContentChanged"/>
-    </type>
-    <type name="QDeclarativeLandmarkIntersectionFilter" defaultProperty="filters" extends="QDeclarativeLandmarkCompoundFilter">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkIntersectionFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeLandmarkModel" extends="QDeclarativeLandmarkAbstractModel">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkModel"/>
-        </exports>
-        <property name="count" type="int"/>
-        <property name="filter" type="QDeclarativeLandmarkFilterBase" isWritable="true" isPointer="true"/>
-        <property name="landmarks" type="QDeclarativeLandmark" isList="true"/>
-        <property name="importFile" type="string" isWritable="true"/>
-        <signal name="countChanged"/>
-        <signal name="filterChanged"/>
-        <signal name="landmarksChanged"/>
-        <signal name="importFileChanged"/>
-        <method name="importLandmarks"/>
-    </type>
-    <type name="QDeclarativeLandmarkNameFilter" extends="QDeclarativeLandmarkFilterBase">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkNameFilter"/>
-        </exports>
-        <property name="name" type="string" isWritable="true"/>
-        <signal name="nameChanged"/>
-    </type>
-    <type name="QDeclarativeLandmarkProximityFilter" extends="QDeclarativeLandmarkFilterBase">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkProximityFilter"/>
-        </exports>
-        <property name="center" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <property name="radius" type="double" isWritable="true"/>
-        <signal name="radiusChanged"/>
-        <signal name="centerChanged"/>
-    </type>
-    <type name="QDeclarativeLandmarkUnionFilter" defaultProperty="filters" extends="QDeclarativeLandmarkCompoundFilter">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="LandmarkUnionFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeLayoutItem" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="Qt" version="4.7" type="LayoutItem"/>
-            <export module="QtQuick" version="1.0" type="LayoutItem"/>
-        </exports>
-        <property name="maximumSize" type="QSizeF" isWritable="true"/>
-        <property name="minimumSize" type="QSizeF" isWritable="true"/>
-        <property name="preferredSize" type="QSizeF" isWritable="true"/>
-        <signal name="maximumSizeChanged"/>
-        <signal name="minimumSizeChanged"/>
-        <signal name="preferredSizeChanged"/>
-    </type>
-    <type name="QDeclarativeListElement" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="ListElement"/>
-            <export module="QtQuick" version="1.0" type="ListElement"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeListModel" extends="QListModelInterface">
-        <exports>
-            <export module="Qt" version="4.7" type="ListModel"/>
-            <export module="QtQuick" version="1.0" type="ListModel"/>
-        </exports>
-        <property name="count" type="int"/>
-        <signal name="countChanged"/>
-        <method name="clear"/>
-        <method name="remove">
-            <param name="index" type="int"/>
-        </method>
-        <method name="append">
-            <param type="QScriptValue"/>
-        </method>
-        <method name="insert">
-            <param name="index" type="int"/>
-            <param type="QScriptValue"/>
-        </method>
-        <method name="get" type="QScriptValue">
-            <param name="index" type="int"/>
-        </method>
-        <method name="set">
-            <param name="index" type="int"/>
-            <param type="QScriptValue"/>
-        </method>
-        <method name="setProperty">
-            <param name="index" type="int"/>
-            <param name="property" type="string"/>
-            <param name="value" type="QVariant"/>
-        </method>
-        <method name="move">
-            <param name="from" type="int"/>
-            <param name="to" type="int"/>
-            <param name="count" type="int"/>
-        </method>
-        <method name="sync"/>
-    </type>
-    <type name="QDeclarativeListView" defaultProperty="data" extends="QDeclarativeFlickable">
-        <exports>
-            <export module="QtQuick" version="1.0" type="ListView"/>
-            <export module="Qt" version="4.7" type="ListView"/>
-        </exports>
-        <enum name="HighlightRangeMode">
-            <enumerator name="NoHighlightRange" value="0"/>
-            <enumerator name="ApplyRange" value="1"/>
-            <enumerator name="StrictlyEnforceRange" value="2"/>
-        </enum>
-        <enum name="Orientation">
-            <enumerator name="Horizontal" value="1"/>
-            <enumerator name="Vertical" value="2"/>
-        </enum>
-        <enum name="SnapMode">
-            <enumerator name="NoSnap" value="0"/>
-            <enumerator name="SnapToItem" value="1"/>
-            <enumerator name="SnapOneItem" value="2"/>
-        </enum>
-        <enum name="PositionMode">
-            <enumerator name="Beginning" value="0"/>
-            <enumerator name="Center" value="1"/>
-            <enumerator name="End" value="2"/>
-            <enumerator name="Visible" value="3"/>
-            <enumerator name="Contain" value="4"/>
-        </enum>
-        <property name="model" type="QVariant" isWritable="true"/>
-        <property name="delegate" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="currentIndex" type="int" isWritable="true"/>
-        <property name="currentItem" type="QDeclarativeItem" isPointer="true"/>
-        <property name="count" type="int"/>
-        <property name="highlight" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="highlightItem" type="QDeclarativeItem" isPointer="true"/>
-        <property name="highlightFollowsCurrentItem" type="bool" isWritable="true"/>
-        <property name="highlightMoveSpeed" type="qreal" isWritable="true"/>
-        <property name="highlightMoveDuration" type="int" isWritable="true"/>
-        <property name="highlightResizeSpeed" type="qreal" isWritable="true"/>
-        <property name="highlightResizeDuration" type="int" isWritable="true"/>
-        <property name="preferredHighlightBegin" type="qreal" isWritable="true"/>
-        <property name="preferredHighlightEnd" type="qreal" isWritable="true"/>
-        <property name="highlightRangeMode" type="HighlightRangeMode" isWritable="true"/>
-        <property name="spacing" type="qreal" isWritable="true"/>
-        <property name="orientation" type="Orientation" isWritable="true"/>
-        <property name="keyNavigationWraps" type="bool" isWritable="true"/>
-        <property name="cacheBuffer" type="int" isWritable="true"/>
-        <property name="section" type="QDeclarativeViewSection" isPointer="true"/>
-        <property name="currentSection" type="string"/>
-        <property name="snapMode" type="SnapMode" isWritable="true"/>
-        <property name="header" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="footer" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <signal name="countChanged"/>
-        <signal name="spacingChanged"/>
-        <signal name="orientationChanged"/>
-        <signal name="currentIndexChanged"/>
-        <signal name="currentSectionChanged"/>
-        <signal name="highlightMoveSpeedChanged"/>
-        <signal name="highlightMoveDurationChanged"/>
-        <signal name="highlightResizeSpeedChanged"/>
-        <signal name="highlightResizeDurationChanged"/>
-        <signal name="highlightChanged"/>
-        <signal name="highlightItemChanged"/>
-        <signal name="modelChanged"/>
-        <signal name="delegateChanged"/>
-        <signal name="highlightFollowsCurrentItemChanged"/>
-        <signal name="preferredHighlightBeginChanged"/>
-        <signal name="preferredHighlightEndChanged"/>
-        <signal name="highlightRangeModeChanged"/>
-        <signal name="keyNavigationWrapsChanged"/>
-        <signal name="cacheBufferChanged"/>
-        <signal name="snapModeChanged"/>
-        <signal name="headerChanged"/>
-        <signal name="footerChanged"/>
-        <method name="incrementCurrentIndex"/>
-        <method name="decrementCurrentIndex"/>
-        <method name="positionViewAtIndex">
-            <param name="index" type="int"/>
-            <param name="mode" type="int"/>
-        </method>
-        <method name="indexAt" type="int">
-            <param name="x" type="int"/>
-            <param name="y" type="int"/>
-        </method>
-    </type>
-    <type name="QDeclarativeLoader" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Loader"/>
-            <export module="Qt" version="4.7" type="Loader"/>
-        </exports>
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Ready" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Error" value="3"/>
-        </enum>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="sourceComponent" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="item" type="QGraphicsObject" isPointer="true"/>
-        <property name="status" type="Status"/>
-        <property name="progress" type="qreal"/>
-        <signal name="itemChanged"/>
-        <signal name="sourceChanged"/>
-        <signal name="statusChanged"/>
-        <signal name="progressChanged"/>
-        <signal name="loaded"/>
-    </type>
-    <type name="QDeclarativeMessageFilter" extends="QDeclarativeMessageFilterBase">
-        <exports>
-            <export module="QtMobility.messaging" version="1.1" type="MessageFilter"/>
-        </exports>
-        <enum name="FilterType">
-            <enumerator name="AncestorFolder" value="0"/>
-            <enumerator name="ParentFolder" value="1"/>
-            <enumerator name="Priority" value="2"/>
-            <enumerator name="Recipients" value="3"/>
-            <enumerator name="Sender" value="4"/>
-            <enumerator name="Size" value="5"/>
-            <enumerator name="StandardFolder" value="6"/>
-            <enumerator name="Status" value="7"/>
-            <enumerator name="Subject" value="8"/>
-            <enumerator name="Timestamp" value="9"/>
-            <enumerator name="ReceptionTimestamp" value="10"/>
-            <enumerator name="Type" value="11"/>
-        </enum>
-        <enum name="Comparator">
-            <enumerator name="Includes" value="0"/>
-            <enumerator name="Excludes" value="1"/>
-            <enumerator name="Equal" value="2"/>
-            <enumerator name="NotEqual" value="3"/>
-            <enumerator name="LessThan" value="4"/>
-            <enumerator name="LessThanEqual" value="5"/>
-            <enumerator name="GreaterThan" value="6"/>
-            <enumerator name="GreaterThanEqual" value="7"/>
-        </enum>
-        <enum name="Priority">
-            <enumerator name="HighPriority" value="1"/>
-            <enumerator name="NormalPriority" value="2"/>
-            <enumerator name="LowPriority" value="3"/>
-        </enum>
-        <enum name="Type">
-            <enumerator name="Mms" value="1"/>
-            <enumerator name="Sms" value="2"/>
-            <enumerator name="Email" value="4"/>
-            <enumerator name="InstantMessage" value="8"/>
-            <enumerator name="AnyType" value="-1"/>
-        </enum>
-        <enum name="Status">
-            <enumerator name="Read" value="1"/>
-            <enumerator name="HasAttachments" value="2"/>
-            <enumerator name="Incoming" value="4"/>
-            <enumerator name="Removed" value="8"/>
-        </enum>
-        <property name="type" type="FilterType" isWritable="true"/>
-        <property name="value" type="QVariant" isWritable="true"/>
-        <property name="comparator" type="Comparator" isWritable="true"/>
-        <signal name="typeChanged"/>
-        <signal name="valueChanged"/>
-        <signal name="comparatorChanged"/>
-    </type>
-    <type name="QDeclarativeMessageFilterBase" extends="QObject">
-        <exports>
-            <export module="QtMobility.messaging" version="1.1" type="MessageFilterBase"/>
-        </exports>
-        <property name="negated" type="bool" isWritable="true"/>
-        <signal name="negatedChanged"/>
-    </type>
-    <type name="QDeclarativeMessageIntersectionFilter" defaultProperty="filters" extends="QDeclarativeMessageFilterBase">
-        <exports>
-            <export module="QtMobility.messaging" version="1.1" type="MessageIntersectionFilter"/>
-        </exports>
-        <property name="filters" type="QDeclarativeMessageFilterBase" isList="true"/>
-    </type>
-    <type name="QDeclarativeMessageModel" extends="QAbstractListModel">
-        <exports>
-            <export module="QtMobility.messaging" version="1.1" type="MessageModel"/>
-        </exports>
-        <enum name="SortKey">
-            <enumerator name="Priority" value="0"/>
-            <enumerator name="Sender" value="1"/>
-            <enumerator name="Size" value="2"/>
-            <enumerator name="StatusRead" value="3"/>
-            <enumerator name="StatusIncoming" value="4"/>
-            <enumerator name="Subject" value="5"/>
-            <enumerator name="Timestamp" value="6"/>
-            <enumerator name="ReceptionTimestamp" value="7"/>
-            <enumerator name="Recipients" value="8"/>
-            <enumerator name="Type" value="9"/>
-        </enum>
-        <enum name="SortOrder">
-            <enumerator name="AscendingOrder" value="0"/>
-            <enumerator name="DescendingOrder" value="1"/>
-        </enum>
-        <property name="filter" type="QDeclarativeMessageFilterBase" isWritable="true" isPointer="true"/>
-        <property name="sortBy" type="SortKey" isWritable="true"/>
-        <property name="sortOrder" type="SortOrder" isWritable="true"/>
-        <property name="count" type="int"/>
-        <property name="limit" type="int" isWritable="true"/>
-        <signal name="filterChanged"/>
-        <signal name="sortByChanged"/>
-        <signal name="sortOrderChanged"/>
-        <signal name="limitChanged"/>
-        <signal name="countChanged"/>
-        <signal name="messageAdded"/>
-        <method name="showMessage">
-            <param name="index" type="int"/>
-        </method>
-        <method name="removeMessage">
-            <param name="index" type="int"/>
-        </method>
-    </type>
-    <type name="QDeclarativeMessageUnionFilter" defaultProperty="filters" extends="QDeclarativeMessageFilterBase">
-        <exports>
-            <export module="QtMobility.messaging" version="1.1" type="MessageUnionFilter"/>
-        </exports>
-        <property name="filters" type="QDeclarativeMessageFilterBase" isList="true"/>
-    </type>
-    <type name="QDeclarativeMouseArea" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtQuick" version="1.0" type="MouseArea"/>
-            <export module="Qt" version="4.7" type="MouseArea"/>
-        </exports>
-        <property name="mouseX" type="qreal"/>
-        <property name="mouseY" type="qreal"/>
-        <property name="containsMouse" type="bool"/>
-        <property name="pressed" type="bool"/>
-        <property name="enabled" type="bool" isWritable="true"/>
-        <property name="pressedButtons" type="Qt.MouseButtons"/>
-        <property name="acceptedButtons" type="Qt.MouseButtons" isWritable="true"/>
-        <property name="hoverEnabled" type="bool" isWritable="true"/>
-        <property name="drag" type="QDeclarativeDrag" isPointer="true"/>
-        <signal name="hoveredChanged"/>
-        <signal name="pressedChanged"/>
-        <signal name="enabledChanged"/>
-        <signal name="acceptedButtonsChanged"/>
-        <signal name="hoverEnabledChanged"/>
-        <signal name="positionChanged">
-            <param name="mouse" type="QDeclarativeMouseEvent" isPointer="true"/>
-        </signal>
-        <signal name="mousePositionChanged">
-            <param name="mouse" type="QDeclarativeMouseEvent" isPointer="true"/>
-        </signal>
-        <signal name="pressed">
-            <param name="mouse" type="QDeclarativeMouseEvent" isPointer="true"/>
-        </signal>
-        <signal name="pressAndHold">
-            <param name="mouse" type="QDeclarativeMouseEvent" isPointer="true"/>
-        </signal>
-        <signal name="released">
-            <param name="mouse" type="QDeclarativeMouseEvent" isPointer="true"/>
-        </signal>
-        <signal name="clicked">
-            <param name="mouse" type="QDeclarativeMouseEvent" isPointer="true"/>
-        </signal>
-        <signal name="doubleClicked">
-            <param name="mouse" type="QDeclarativeMouseEvent" isPointer="true"/>
-        </signal>
-        <signal name="entered"/>
-        <signal name="exited"/>
-        <signal name="canceled"/>
-    </type>
-    <type name="QDeclarativeNetworkInfo" extends="QSystemNetworkInfo">
-        <exports>
-            <export module="QtMobility.systeminfo" version="1.1" type="NetworkInfo"/>
-        </exports>
-        <property name="networkStatus" type="string"/>
-        <property name="networkName" type="string"/>
-        <property name="networkSignalStrength" type="int"/>
-        <property name="macAddress" type="string"/>
-        <property name="mode" type="QSystemNetworkInfo.NetworkMode" isWritable="true"/>
-        <property name="availableModes" type="QList&lt;QSystemNetworkInfo.NetworkMode&gt;"/>
-        <signal name="statusChanged">
-            <param name="newStatus" type="string"/>
-        </signal>
-        <signal name="signalStrengthChanged">
-            <param name="strength" type="int"/>
-        </signal>
-        <signal name="nameChanged">
-            <param name="name" type="string"/>
-        </signal>
-        <signal name="modeChanged"/>
-        <signal name="currentMobileCountryCodeChanged">
-            <param name="newMcc" type="string"/>
-        </signal>
-        <signal name="currentMobileNetworkCodeChanged">
-            <param name="newMnc" type="string"/>
-        </signal>
-        <method name="interfaceForMode" type="QNetworkInterface"/>
-        <method name="startStatusChanged"/>
-        <method name="startSignalStrengthChanged"/>
-        <method name="startNameChanged"/>
-        <method name="startModeChanged"/>
-        <method name="startCurrentMobileCountryCodeChanged"/>
-        <method name="startCurrentMobileNetworkCodeChanged"/>
-        <method name="availableModes" type="QList&lt;QSystemNetworkInfo.NetworkMode&gt;"/>
-    </type>
-    <type name="QDeclarativeNumberAnimation" extends="QDeclarativePropertyAnimation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="NumberAnimation"/>
-            <export module="Qt" version="4.7" type="NumberAnimation"/>
-        </exports>
-        <property name="from" type="qreal" isWritable="true"/>
-        <property name="to" type="qreal" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeOrganizerCollection" extends="QObject">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Collection"/>
-        </exports>
-        <property name="collectionId" type="uint"/>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="description" type="string" isWritable="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="image" type="QUrl" isWritable="true"/>
-        <signal name="valueChanged"/>
-        <method name="setMetaData">
-            <param name="key" type="string"/>
-            <param name="value" type="QVariant"/>
-        </method>
-        <method name="metaData" type="QVariant">
-            <param name="key" type="string"/>
-        </method>
-    </type>
-    <type name="QDeclarativeOrganizerEvent" defaultProperty="details" extends="QDeclarativeOrganizerItem">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Event"/>
-        </exports>
-        <property name="startDateTime" type="QDateTime" isWritable="true"/>
-        <property name="endDateTime" type="QDateTime" isWritable="true"/>
-        <property name="allDay" type="bool" isWritable="true"/>
-        <property name="location" type="string" isWritable="true"/>
-        <property name="priority" type="QDeclarativeOrganizerItemPriority.PriorityType" isWritable="true"/>
-        <property name="recurrence" type="QDeclarativeOrganizerItemRecurrence" isPointer="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerEventOccurrence" defaultProperty="details" extends="QDeclarativeOrganizerItem">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="EventOccurrence"/>
-        </exports>
-        <property name="startDateTime" type="QDateTime" isWritable="true"/>
-        <property name="endDateTime" type="QDateTime" isWritable="true"/>
-        <property name="location" type="string" isWritable="true"/>
-        <property name="priority" type="QDeclarativeOrganizerItemPriority.PriorityType" isWritable="true"/>
-        <property name="parentId" type="uint" isWritable="true"/>
-        <property name="originalDate" type="QDate" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerEventTime" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="EventTime"/>
-        </exports>
-        <property name="startDateTime" type="QDateTime" isWritable="true"/>
-        <property name="endDateTime" type="QDateTime" isWritable="true"/>
-        <property name="isAllDay" type="bool" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItem" defaultProperty="details" extends="QObject">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="OrganizerItem"/>
-        </exports>
-        <enum name="OrganizerItemType">
-            <enumerator name="Event" value="0"/>
-            <enumerator name="EventOccurrence" value="1"/>
-            <enumerator name="Todo" value="2"/>
-            <enumerator name="TodoOccurrence" value="3"/>
-            <enumerator name="Journal" value="4"/>
-            <enumerator name="Note" value="5"/>
-            <enumerator name="Customized" value="100"/>
-        </enum>
-        <property name="details" type="QDeclarativeOrganizerItemDetail" isList="true"/>
-        <property name="manager" type="string"/>
-        <property name="itemId" type="uint"/>
-        <property name="type" type="string"/>
-        <property name="displayLabel" type="string" isWritable="true"/>
-        <property name="description" type="string" isWritable="true"/>
-        <property name="guid" type="string" isWritable="true"/>
-        <property name="modified" type="bool"/>
-        <signal name="itemChanged"/>
-        <method name="save"/>
-        <method name="clearDetails"/>
-        <method name="clearComments"/>
-        <method name="detail" type="QVariant">
-            <param name="name" type="string"/>
-        </method>
-        <method name="details" type="QVariant">
-            <param name="name" type="string"/>
-        </method>
-        <method name="addComment">
-            <param name="comment" type="string"/>
-        </method>
-        <method name="removeDetail" type="bool">
-            <param name="detail" type="QDeclarativeOrganizerItemDetail" isPointer="true"/>
-        </method>
-    </type>
-    <type name="QDeclarativeOrganizerItemAudibleReminder" extends="QDeclarativeOrganizerItemReminder">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="AudibleReminder"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="DataUrl" value="0"/>
-        </enum>
-        <property name="dataUrl" type="QUrl" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemChangelogFilter" extends="QDeclarativeOrganizerItemFilter">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="ChangelogFilter"/>
-        </exports>
-        <enum name="EventType">
-            <enumerator name="EventAdded" value="0"/>
-            <enumerator name="EventChanged" value="1"/>
-            <enumerator name="EventRemoved" value="2"/>
-        </enum>
-        <property name="since" type="QDateTime" isWritable="true"/>
-        <property name="eventType" type="EventType" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemCollectionFilter" extends="QDeclarativeOrganizerItemFilter">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="CollectionFilter"/>
-        </exports>
-        <property name="ids" type="QVariantList" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemDescription" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Description"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Description" value="0"/>
-        </enum>
-        <property name="description" type="string" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemDetail" extends="QObject">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Detail"/>
-        </exports>
-        <enum name="ItemDetailType">
-            <enumerator name="EventTime" value="0"/>
-            <enumerator name="JournalTime" value="1"/>
-            <enumerator name="TodoTime" value="2"/>
-            <enumerator name="TodoProgress" value="3"/>
-            <enumerator name="Reminder" value="4"/>
-            <enumerator name="AudibleReminder" value="5"/>
-            <enumerator name="VisualReminder" value="6"/>
-            <enumerator name="EmailReminder" value="7"/>
-            <enumerator name="Comment" value="8"/>
-            <enumerator name="Description" value="9"/>
-            <enumerator name="DisplayLabel" value="10"/>
-            <enumerator name="Guid" value="11"/>
-            <enumerator name="Location" value="12"/>
-            <enumerator name="Parent" value="13"/>
-            <enumerator name="Priority" value="14"/>
-            <enumerator name="Recurrence" value="15"/>
-            <enumerator name="Timestamp" value="16"/>
-            <enumerator name="Type" value="17"/>
-            <enumerator name="Tag" value="18"/>
-            <enumerator name="Customized" value="100"/>
-        </enum>
-        <property name="definitionName" type="string"/>
-        <property name="fieldNames" type="QStringList"/>
-        <property name="type" type="ItemDetailType"/>
-        <property name="readOnly" type="bool"/>
-        <property name="removable" type="bool"/>
-        <signal name="detailChanged"/>
-        <method name="value" type="QVariant">
-            <param name="key" type="string"/>
-        </method>
-        <method name="setValue" type="bool">
-            <param name="key" type="string"/>
-            <param name="value" type="QVariant"/>
-        </method>
-        <method name="removeValue" type="bool">
-            <param name="key" type="string"/>
-        </method>
-    </type>
-    <type name="QDeclarativeOrganizerItemDetailFilter" extends="QDeclarativeOrganizerItemFilter">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="DetailFilter"/>
-        </exports>
-        <property name="value" type="QVariant" isWritable="true"/>
-        <property name="matchFlags" type="QDeclarativeOrganizerItemFilter.MatchFlags" isWritable="true"/>
-        <property name="detailFieldName" type="string" isWritable="true"/>
-        <property name="detailDefinitionName" type="string" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemDetailRangeFilter" extends="QDeclarativeOrganizerItemFilter">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="DetailRangeFilter"/>
-        </exports>
-        <enum name="RangeFlag">
-            <enumerator name="IncludeLower" value="0"/>
-            <enumerator name="IncludeUpper" value="1"/>
-            <enumerator name="ExcludeLower" value="2"/>
-            <enumerator name="ExcludeUpper" value="0"/>
-        </enum>
-        <enum name="RangeFlags">
-            <enumerator name="IncludeLower" value="0"/>
-            <enumerator name="IncludeUpper" value="1"/>
-            <enumerator name="ExcludeLower" value="2"/>
-            <enumerator name="ExcludeUpper" value="0"/>
-        </enum>
-        <property name="min" type="QVariant" isWritable="true"/>
-        <property name="max" type="QVariant" isWritable="true"/>
-        <property name="matchFlags" type="QDeclarativeOrganizerItemFilter.MatchFlags" isWritable="true"/>
-        <property name="rangeFlags" type="RangeFlags" isWritable="true"/>
-        <property name="detailFieldName" type="string" isWritable="true"/>
-        <property name="detailDefinitionName" type="string" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemDisplayLabel" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="DisplayLabel"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Label" value="0"/>
-        </enum>
-        <property name="label" type="string" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemEmailReminder" extends="QDeclarativeOrganizerItemReminder">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="EmailReminder"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Subject" value="0"/>
-            <enumerator name="Body" value="1"/>
-            <enumerator name="Recipients" value="2"/>
-            <enumerator name="Attachments" value="3"/>
-        </enum>
-        <property name="subject" type="string" isWritable="true"/>
-        <property name="body" type="string" isWritable="true"/>
-        <property name="recipients" type="QStringList" isWritable="true"/>
-        <property name="attachments" type="QVariantList" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemFetchHint" extends="QObject">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="FetchHint"/>
-        </exports>
-        <enum name="OptimizationHint">
-            <enumerator name="AllRequired" value="0"/>
-            <enumerator name="NoActionPreferences" value="2"/>
-            <enumerator name="NoBinaryBlobs" value="4"/>
-        </enum>
-        <enum name="OptimizationHints">
-            <enumerator name="AllRequired" value="0"/>
-            <enumerator name="NoActionPreferences" value="2"/>
-            <enumerator name="NoBinaryBlobs" value="4"/>
-        </enum>
-        <property name="optimizationHints" type="OptimizationHints" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemFilter" extends="QObject">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Filter"/>
-        </exports>
-        <enum name="FilterType">
-            <enumerator name="InvalidFilter" value="0"/>
-            <enumerator name="DetailFilter" value="1"/>
-            <enumerator name="DetailRangeFilter" value="2"/>
-            <enumerator name="ChangeLogFilter" value="3"/>
-            <enumerator name="ActionFilter" value="4"/>
-            <enumerator name="IntersectionFilter" value="5"/>
-            <enumerator name="UnionFilter" value="6"/>
-            <enumerator name="IdFilter" value="7"/>
-            <enumerator name="CollectionFilter" value="8"/>
-            <enumerator name="DefaultFilter" value="9"/>
-        </enum>
-        <enum name="MatchFlags">
-            <enumerator name="MatchExactly" value="0"/>
-            <enumerator name="MatchContains" value="1"/>
-            <enumerator name="MatchStartsWith" value="2"/>
-            <enumerator name="MatchEndsWith" value="3"/>
-            <enumerator name="MatchFixedString" value="8"/>
-            <enumerator name="MatchCaseSensitive" value="16"/>
-        </enum>
-        <property name="type" type="FilterType"/>
-        <signal name="filterChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemGuid" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Guid"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Guid" value="0"/>
-        </enum>
-        <property name="guid" type="string" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemIdFilter" extends="QDeclarativeOrganizerItemFilter">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="IdFilter"/>
-        </exports>
-        <property name="ids" type="QVariantList" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemIntersectionFilter" defaultProperty="subFilters" extends="QDeclarativeOrganizerItemFilter">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="IntersectionFilter"/>
-        </exports>
-        <property name="subFilters" type="QDeclarativeOrganizerItemFilter" isList="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemInvalidFilter" extends="QDeclarativeOrganizerItemFilter">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="InvalidFilter"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeOrganizerItemLocation" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Location"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Latitude" value="0"/>
-            <enumerator name="Longitude" value="1"/>
-            <enumerator name="Label" value="2"/>
-        </enum>
-        <property name="latitude" type="double" isWritable="true"/>
-        <property name="longitude" type="double" isWritable="true"/>
-        <property name="label" type="string" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemParent" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="ItemParent"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="ParentId" value="0"/>
-            <enumerator name="OriginalDate" value="1"/>
-        </enum>
-        <property name="parentId" type="uint" isWritable="true"/>
-        <property name="originalDate" type="QDate" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemPriority" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Priority"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Priority" value="0"/>
-        </enum>
-        <enum name="PriorityType">
-            <enumerator name="Unknown" value="0"/>
-            <enumerator name="Highest" value="1"/>
-            <enumerator name="ExtremelyHigh" value="2"/>
-            <enumerator name="VeryHigh" value="3"/>
-            <enumerator name="High" value="4"/>
-            <enumerator name="Medium" value="5"/>
-            <enumerator name="Low" value="6"/>
-            <enumerator name="VeryLow" value="7"/>
-            <enumerator name="ExtremelyLow" value="8"/>
-            <enumerator name="Lowest" value="9"/>
-        </enum>
-        <property name="priority" type="PriorityType" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemRecurrence" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Recurrence"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="RecurrenceRules" value="0"/>
-            <enumerator name="ExceptionRules" value="1"/>
-            <enumerator name="RecurrenceDates" value="2"/>
-            <enumerator name="ExceptionDates" value="3"/>
-        </enum>
-        <property name="recurrenceRules" type="QDeclarativeOrganizerRecurrenceRule" isList="true"/>
-        <property name="exceptionRules" type="QDeclarativeOrganizerRecurrenceRule" isList="true"/>
-        <property name="recurrenceDates" type="QVariantList" isWritable="true"/>
-        <property name="exceptionDates" type="QVariantList" isWritable="true"/>
-        <signal name="recurrenceRulesChanged"/>
-        <signal name="exceptionRulesChanged"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemReminder" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Reminder"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Type" value="0"/>
-            <enumerator name="SecondsBeforeStart" value="1"/>
-            <enumerator name="RepetitionCount" value="2"/>
-            <enumerator name="RepetitionDelay" value="3"/>
-        </enum>
-        <enum name="ReminderType">
-            <enumerator name="NoReminder" value="0"/>
-            <enumerator name="VisualReminder" value="1"/>
-            <enumerator name="AudibleReminder" value="2"/>
-            <enumerator name="EmailReminder" value="3"/>
-        </enum>
-        <property name="reminderType" type="ReminderType"/>
-        <property name="secondsBeforeStart" type="int" isWritable="true"/>
-        <property name="repetitionCount" type="int" isWritable="true"/>
-        <property name="repetitionDelay" type="int" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemSortOrder" extends="QObject">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="SortOrder"/>
-        </exports>
-        <enum name="BlankPolicy">
-            <enumerator name="BlanksFirst" value="0"/>
-            <enumerator name="BlanksLast" value="1"/>
-        </enum>
-        <property name="definitionName" type="string" isWritable="true"/>
-        <property name="fieldName" type="string" isWritable="true"/>
-        <property name="blankPolicy" type="BlankPolicy" isWritable="true"/>
-        <property name="direction" type="Qt.SortOrder" isWritable="true"/>
-        <property name="sensitivity" type="Qt.CaseSensitivity" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemTimestamp" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Timestamp"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="LastModified" value="0"/>
-            <enumerator name="Created" value="1"/>
-        </enum>
-        <property name="lastModified" type="QDateTime" isWritable="true"/>
-        <property name="created" type="QDateTime" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemType" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="ItemType"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="ItemType" value="0"/>
-        </enum>
-        <property name="itemType" type="OrganizerItemType" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemUnionFilter" defaultProperty="subFilters" extends="QDeclarativeOrganizerItemFilter">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="UnionFilter"/>
-        </exports>
-        <property name="subFilters" type="QDeclarativeOrganizerItemFilter" isList="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerItemVisualReminder" extends="QDeclarativeOrganizerItemReminder">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="VisualReminder"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="DataUrl" value="0"/>
-            <enumerator name="Message" value="1"/>
-        </enum>
-        <property name="message" type="string" isWritable="true"/>
-        <property name="dataUrl" type="QUrl" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerJournal" defaultProperty="details" extends="QDeclarativeOrganizerItem">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Journal"/>
-        </exports>
-        <property name="dateTime" type="QDateTime" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerJournalTime" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="JournalTime"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="EntryDateTime" value="0"/>
-        </enum>
-        <property name="entryDateTime" type="QDateTime" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerModel" extends="QAbstractListModel">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="OrganizerModel"/>
-        </exports>
-        <property name="manager" type="string" isWritable="true"/>
-        <property name="availableManagers" type="QStringList"/>
-        <property name="autoUpdate" type="bool" isWritable="true"/>
-        <property name="startPeriod" type="QDateTime" isWritable="true"/>
-        <property name="endPeriod" type="QDateTime" isWritable="true"/>
-        <property name="filter" type="QDeclarativeOrganizerItemFilter" isWritable="true" isPointer="true"/>
-        <property name="fetchHint" type="QDeclarativeOrganizerItemFetchHint" isWritable="true" isPointer="true"/>
-        <property name="sortOrders" type="QDeclarativeOrganizerItemSortOrder" isList="true"/>
-        <property name="items" type="QDeclarativeOrganizerItem" isList="true"/>
-        <property name="occurrences" type="QDeclarativeOrganizerItem" isList="true"/>
-        <property name="events" type="QDeclarativeOrganizerItem" isList="true"/>
-        <property name="eventOccurrences" type="QDeclarativeOrganizerItem" isList="true"/>
-        <property name="todos" type="QDeclarativeOrganizerItem" isList="true"/>
-        <property name="todoOccurrences" type="QDeclarativeOrganizerItem" isList="true"/>
-        <property name="journals" type="QDeclarativeOrganizerItem" isList="true"/>
-        <property name="notes" type="QDeclarativeOrganizerItem" isList="true"/>
-        <property name="error" type="string"/>
-        <signal name="managerChanged"/>
-        <signal name="availableManagersChanged"/>
-        <signal name="filterChanged"/>
-        <signal name="fetchHintChanged"/>
-        <signal name="itemsChanged"/>
-        <signal name="sortOrdersChanged"/>
-        <signal name="errorChanged"/>
-        <signal name="startPeriodChanged"/>
-        <signal name="endPeriodChanged"/>
-        <signal name="autoUpdateChanged"/>
-        <method name="update"/>
-        <method name="exportItems">
-            <param name="file" type="string"/>
-        </method>
-        <method name="importItems">
-            <param name="file" type="string"/>
-        </method>
-        <method name="removeItem">
-            <param name="id" type="uint"/>
-        </method>
-        <method name="removeItems">
-            <param name="ids" type="QList&lt;uint&gt;"/>
-        </method>
-        <method name="saveItem">
-            <param name="item" type="QDeclarativeOrganizerItem" isPointer="true"/>
-        </method>
-    </type>
-    <type name="QDeclarativeOrganizerNote" defaultProperty="details" extends="QDeclarativeOrganizerItem">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Note"/>
-        </exports>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerRecurrenceRule" extends="QObject">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="RecurrenceRule"/>
-        </exports>
-        <enum name="Frequency">
-            <enumerator name="Invalid" value="0"/>
-            <enumerator name="Daily" value="1"/>
-            <enumerator name="Weekly" value="2"/>
-            <enumerator name="Monthly" value="3"/>
-            <enumerator name="Yearly" value="4"/>
-        </enum>
-        <enum name="Month">
-            <enumerator name="January" value="1"/>
-            <enumerator name="February" value="2"/>
-            <enumerator name="March" value="3"/>
-            <enumerator name="April" value="4"/>
-            <enumerator name="May" value="5"/>
-            <enumerator name="June" value="6"/>
-            <enumerator name="July" value="7"/>
-            <enumerator name="August" value="8"/>
-            <enumerator name="September" value="9"/>
-            <enumerator name="October" value="10"/>
-            <enumerator name="November" value="11"/>
-            <enumerator name="December" value="12"/>
-        </enum>
-        <property name="frequency" type="Frequency" isWritable="true"/>
-        <property name="limit" type="QVariant" isWritable="true"/>
-        <property name="interval" type="int" isWritable="true"/>
-        <property name="daysOfWeek" type="QVariantList" isWritable="true"/>
-        <property name="daysOfMonth" type="QVariantList" isWritable="true"/>
-        <property name="daysOfYear" type="QVariantList" isWritable="true"/>
-        <property name="monthsOfYear" type="QVariantList" isWritable="true"/>
-        <property name="positions" type="QVariantList" isWritable="true"/>
-        <property name="firstDayOfWeek" type="Qt.DayOfWeek" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerTodo" defaultProperty="details" extends="QDeclarativeOrganizerItem">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="Todo"/>
-        </exports>
-        <property name="startDateTime" type="QDateTime" isWritable="true"/>
-        <property name="dueDateTime" type="QDateTime" isWritable="true"/>
-        <property name="isAllDay" type="bool" isWritable="true"/>
-        <property name="priority" type="QDeclarativeOrganizerItemPriority.PriorityType" isWritable="true"/>
-        <property name="progressPercentage" type="int" isWritable="true"/>
-        <property name="status" type="QDeclarativeOrganizerTodoProgress.StatusType" isWritable="true"/>
-        <property name="finishedDateTime" type="QDateTime" isWritable="true"/>
-        <property name="recurrence" type="QDeclarativeOrganizerItemRecurrence" isPointer="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerTodoOccurrence" defaultProperty="details" extends="QDeclarativeOrganizerItem">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="TodoOccurrence"/>
-        </exports>
-        <property name="startDateTime" type="QDateTime" isWritable="true"/>
-        <property name="dueDateTime" type="QDateTime" isWritable="true"/>
-        <property name="priority" type="QDeclarativeOrganizerItemPriority.PriorityType" isWritable="true"/>
-        <property name="progressPercentage" type="int" isWritable="true"/>
-        <property name="status" type="QDeclarativeOrganizerTodoProgress.StatusType" isWritable="true"/>
-        <property name="finishedDateTime" type="QDateTime" isWritable="true"/>
-        <property name="parentId" type="uint" isWritable="true"/>
-        <property name="originalDate" type="QDate" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerTodoProgress" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="TodoProgress"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="Status" value="0"/>
-            <enumerator name="Percentage" value="1"/>
-            <enumerator name="FinishedDateTime" value="2"/>
-        </enum>
-        <enum name="StatusType">
-            <enumerator name="NotStarted" value="0"/>
-            <enumerator name="InProgress" value="1"/>
-            <enumerator name="Complete" value="2"/>
-        </enum>
-        <property name="status" type="StatusType" isWritable="true"/>
-        <property name="percentage" type="int" isWritable="true"/>
-        <property name="finishedDateTime" type="QDateTime" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativeOrganizerTodoTime" extends="QDeclarativeOrganizerItemDetail">
-        <exports>
-            <export module="QtMobility.organizer" version="1.1" type="TodoTime"/>
-        </exports>
-        <enum name="FieldType">
-            <enumerator name="AllDay" value="0"/>
-            <enumerator name="StartDateTime" value="1"/>
-            <enumerator name="DueDateTime" value="2"/>
-        </enum>
-        <property name="allDay" type="bool" isWritable="true"/>
-        <property name="startDateTime" type="QDateTime" isWritable="true"/>
-        <property name="dueDateTime" type="QDateTime" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativePackage" defaultProperty="data" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Package"/>
-            <export module="QtQuick" version="1.0" type="Package"/>
-        </exports>
-        <property name="data" type="QObject" isList="true"/>
-    </type>
-    <type name="QDeclarativePaintedItem" defaultProperty="data" extends="QDeclarativeItem">
-        <property name="contentsSize" type="QSize" isWritable="true"/>
-        <property name="fillColor" type="QColor" isWritable="true"/>
-        <property name="pixelCacheSize" type="int" isWritable="true"/>
-        <property name="smoothCache" type="bool" isWritable="true"/>
-        <property name="contentsScale" type="qreal" isWritable="true"/>
-        <signal name="fillColorChanged"/>
-        <signal name="contentsSizeChanged"/>
-        <signal name="contentsScaleChanged"/>
-    </type>
-    <type name="QDeclarativeParallelAnimation" defaultProperty="animations" extends="QDeclarativeAnimationGroup">
-        <exports>
-            <export module="Qt" version="4.7" type="ParallelAnimation"/>
-            <export module="QtQuick" version="1.0" type="ParallelAnimation"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeParentAnimation" defaultProperty="animations" extends="QDeclarativeAnimationGroup">
-        <exports>
-            <export module="QtQuick" version="1.0" type="ParentAnimation"/>
-            <export module="Qt" version="4.7" type="ParentAnimation"/>
-        </exports>
-        <property name="target" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="newParent" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="via" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <signal name="targetChanged"/>
-        <signal name="newParentChanged"/>
-        <signal name="viaChanged"/>
-    </type>
-    <type name="QDeclarativeParentChange" extends="QDeclarativeStateOperation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="ParentChange"/>
-            <export module="Qt" version="4.7" type="ParentChange"/>
-        </exports>
-        <property name="target" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="parent" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="x" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="y" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="width" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="height" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="scale" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="rotation" type="QDeclarativeScriptString" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeParticleMotion" extends="QObject">
-        <exports>
-            <export module="Qt.labs.particles" version="1.0" type="ParticleMotion"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeParticleMotionGravity" extends="QDeclarativeParticleMotion">
-        <exports>
-            <export module="Qt.labs.particles" version="1.0" type="ParticleMotionGravity"/>
-        </exports>
-        <property name="xattractor" type="qreal" isWritable="true"/>
-        <property name="yattractor" type="qreal" isWritable="true"/>
-        <property name="acceleration" type="qreal" isWritable="true"/>
-        <signal name="xattractorChanged"/>
-        <signal name="yattractorChanged"/>
-        <signal name="accelerationChanged"/>
-    </type>
-    <type name="QDeclarativeParticleMotionLinear" extends="QDeclarativeParticleMotion">
-        <exports>
-            <export module="Qt.labs.particles" version="1.0" type="ParticleMotionLinear"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeParticleMotionWander" extends="QDeclarativeParticleMotion">
-        <exports>
-            <export module="Qt.labs.particles" version="1.0" type="ParticleMotionWander"/>
-        </exports>
-        <property name="xvariance" type="qreal" isWritable="true"/>
-        <property name="yvariance" type="qreal" isWritable="true"/>
-        <property name="pace" type="qreal" isWritable="true"/>
-        <signal name="xvarianceChanged"/>
-        <signal name="yvarianceChanged"/>
-        <signal name="paceChanged"/>
-    </type>
-    <type name="QDeclarativeParticles" defaultProperty="motion" extends="QDeclarativeItem">
-        <exports>
-            <export module="Qt.labs.particles" version="1.0" type="Particles"/>
-        </exports>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="count" type="int" isWritable="true"/>
-        <property name="emissionRate" type="int" isWritable="true"/>
-        <property name="emissionVariance" type="qreal" isWritable="true"/>
-        <property name="lifeSpan" type="int" isWritable="true"/>
-        <property name="lifeSpanDeviation" type="int" isWritable="true"/>
-        <property name="fadeInDuration" type="int" isWritable="true"/>
-        <property name="fadeOutDuration" type="int" isWritable="true"/>
-        <property name="angle" type="qreal" isWritable="true"/>
-        <property name="angleDeviation" type="qreal" isWritable="true"/>
-        <property name="velocity" type="qreal" isWritable="true"/>
-        <property name="velocityDeviation" type="qreal" isWritable="true"/>
-        <property name="motion" type="QDeclarativeParticleMotion" isWritable="true" isPointer="true"/>
-        <signal name="sourceChanged"/>
-        <signal name="countChanged"/>
-        <signal name="emissionRateChanged"/>
-        <signal name="emissionVarianceChanged"/>
-        <signal name="lifeSpanChanged"/>
-        <signal name="lifeSpanDeviationChanged"/>
-        <signal name="fadeInDurationChanged"/>
-        <signal name="fadeOutDurationChanged"/>
-        <signal name="angleChanged"/>
-        <signal name="angleDeviationChanged"/>
-        <signal name="velocityChanged"/>
-        <signal name="velocityDeviationChanged"/>
-        <signal name="emittingChanged"/>
-        <signal name="motionChanged"/>
-        <method name="burst">
-            <param name="count" type="int"/>
-            <param name="emissionRate" type="int"/>
-        </method>
-        <method name="burst">
-            <param name="count" type="int"/>
-        </method>
-    </type>
-    <type name="QDeclarativePath" defaultProperty="pathElements" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Path"/>
-            <export module="QtQuick" version="1.0" type="Path"/>
-        </exports>
-        <property name="pathElements" type="QDeclarativePathElement" isList="true"/>
-        <property name="startX" type="qreal" isWritable="true"/>
-        <property name="startY" type="qreal" isWritable="true"/>
-        <property name="closed" type="bool"/>
-        <signal name="changed"/>
-        <signal name="startXChanged"/>
-        <signal name="startYChanged"/>
-    </type>
-    <type name="QDeclarativePathAttribute" extends="QDeclarativePathElement">
-        <exports>
-            <export module="Qt" version="4.7" type="PathAttribute"/>
-            <export module="QtQuick" version="1.0" type="PathAttribute"/>
-        </exports>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="value" type="qreal" isWritable="true"/>
-        <signal name="nameChanged"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativePathCubic" extends="QDeclarativeCurve">
-        <exports>
-            <export module="Qt" version="4.7" type="PathCubic"/>
-            <export module="QtQuick" version="1.0" type="PathCubic"/>
-        </exports>
-        <property name="control1X" type="qreal" isWritable="true"/>
-        <property name="control1Y" type="qreal" isWritable="true"/>
-        <property name="control2X" type="qreal" isWritable="true"/>
-        <property name="control2Y" type="qreal" isWritable="true"/>
-        <signal name="control1XChanged"/>
-        <signal name="control1YChanged"/>
-        <signal name="control2XChanged"/>
-        <signal name="control2YChanged"/>
-    </type>
-    <type name="QDeclarativePathElement" extends="QObject">
-        <signal name="changed"/>
-    </type>
-    <type name="QDeclarativePathLine" extends="QDeclarativeCurve">
-        <exports>
-            <export module="Qt" version="4.7" type="PathLine"/>
-            <export module="QtQuick" version="1.0" type="PathLine"/>
-        </exports>
-    </type>
-    <type name="QDeclarativePathPercent" extends="QDeclarativePathElement">
-        <exports>
-            <export module="QtQuick" version="1.0" type="PathPercent"/>
-            <export module="Qt" version="4.7" type="PathPercent"/>
-        </exports>
-        <property name="value" type="qreal" isWritable="true"/>
-        <signal name="valueChanged"/>
-    </type>
-    <type name="QDeclarativePathQuad" extends="QDeclarativeCurve">
-        <exports>
-            <export module="Qt" version="4.7" type="PathQuad"/>
-            <export module="QtQuick" version="1.0" type="PathQuad"/>
-        </exports>
-        <property name="controlX" type="qreal" isWritable="true"/>
-        <property name="controlY" type="qreal" isWritable="true"/>
-        <signal name="controlXChanged"/>
-        <signal name="controlYChanged"/>
-    </type>
-    <type name="QDeclarativePathView" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtQuick" version="1.0" type="PathView"/>
-            <export module="Qt" version="4.7" type="PathView"/>
-        </exports>
-        <enum name="HighlightRangeMode">
-            <enumerator name="NoHighlightRange" value="0"/>
-            <enumerator name="ApplyRange" value="1"/>
-            <enumerator name="StrictlyEnforceRange" value="2"/>
-        </enum>
-        <property name="model" type="QVariant" isWritable="true"/>
-        <property name="path" type="QDeclarativePath" isWritable="true" isPointer="true"/>
-        <property name="currentIndex" type="int" isWritable="true"/>
-        <property name="offset" type="qreal" isWritable="true"/>
-        <property name="highlight" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="highlightItem" type="QDeclarativeItem" isPointer="true"/>
-        <property name="preferredHighlightBegin" type="qreal" isWritable="true"/>
-        <property name="preferredHighlightEnd" type="qreal" isWritable="true"/>
-        <property name="highlightRangeMode" type="HighlightRangeMode" isWritable="true"/>
-        <property name="highlightMoveDuration" type="int" isWritable="true"/>
-        <property name="dragMargin" type="qreal" isWritable="true"/>
-        <property name="flickDeceleration" type="qreal" isWritable="true"/>
-        <property name="interactive" type="bool" isWritable="true"/>
-        <property name="moving" type="bool"/>
-        <property name="flicking" type="bool"/>
-        <property name="count" type="int"/>
-        <property name="delegate" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="pathItemCount" type="int" isWritable="true"/>
-        <signal name="currentIndexChanged"/>
-        <signal name="offsetChanged"/>
-        <signal name="modelChanged"/>
-        <signal name="countChanged"/>
-        <signal name="pathChanged"/>
-        <signal name="preferredHighlightBeginChanged"/>
-        <signal name="preferredHighlightEndChanged"/>
-        <signal name="highlightRangeModeChanged"/>
-        <signal name="dragMarginChanged"/>
-        <signal name="snapPositionChanged"/>
-        <signal name="delegateChanged"/>
-        <signal name="pathItemCountChanged"/>
-        <signal name="flickDecelerationChanged"/>
-        <signal name="interactiveChanged"/>
-        <signal name="movingChanged"/>
-        <signal name="flickingChanged"/>
-        <signal name="highlightChanged"/>
-        <signal name="highlightItemChanged"/>
-        <signal name="highlightMoveDurationChanged"/>
-        <signal name="movementStarted"/>
-        <signal name="movementEnded"/>
-        <signal name="flickStarted"/>
-        <signal name="flickEnded"/>
-        <method name="incrementCurrentIndex"/>
-        <method name="decrementCurrentIndex"/>
-    </type>
-    <type name="QDeclarativePauseAnimation" extends="QDeclarativeAbstractAnimation">
-        <exports>
-            <export module="Qt" version="4.7" type="PauseAnimation"/>
-            <export module="QtQuick" version="1.0" type="PauseAnimation"/>
-        </exports>
-        <property name="duration" type="int" isWritable="true"/>
-        <signal name="durationChanged">
-            <param type="int"/>
-        </signal>
-    </type>
-    <type name="QDeclarativePen" extends="QObject">
-        <property name="width" type="int" isWritable="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <signal name="penChanged"/>
-    </type>
-    <type name="QDeclarativePosition" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="Position"/>
-        </exports>
-        <property name="latitudeValid" type="bool"/>
-        <property name="longitudeValid" type="bool"/>
-        <property name="altitudeValid" type="bool"/>
-        <property name="coordinate" type="QDeclarativeCoordinate" isPointer="true"/>
-        <property name="timestamp" type="QDateTime"/>
-        <property name="speed" type="double"/>
-        <property name="speedValid" type="bool"/>
-        <signal name="latitudeValidChanged"/>
-        <signal name="longitudeValidChanged"/>
-        <signal name="altitudeValidChanged"/>
-        <signal name="timestampChanged"/>
-        <signal name="speedChanged"/>
-        <signal name="speedValidChanged"/>
-        <signal name="coordinateChanged"/>
-    </type>
-    <type name="QDeclarativePositionSource" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="PositionSource"/>
-        </exports>
-        <enum name="PositioningMethod">
-            <enumerator name="NoPositioningMethod" value="0"/>
-            <enumerator name="SatellitePositioningMethod" value="255"/>
-            <enumerator name="NonSatellitePositioningMethod" value="-256"/>
-            <enumerator name="AllPositioningMethods" value="-1"/>
-        </enum>
-        <property name="position" type="QDeclarativePosition" isPointer="true"/>
-        <property name="active" type="bool" isWritable="true"/>
-        <property name="nmeaSource" type="QUrl" isWritable="true"/>
-        <property name="updateInterval" type="int" isWritable="true"/>
-        <property name="positioningMethod" type="PositioningMethod"/>
-        <signal name="positionChanged"/>
-        <signal name="activeChanged"/>
-        <signal name="nmeaSourceChanged"/>
-        <signal name="updateIntervalChanged"/>
-        <signal name="positioningMethodChanged"/>
-        <method name="update"/>
-        <method name="start"/>
-        <method name="stop"/>
-    </type>
-    <type name="QDeclarativePropertyAction" extends="QDeclarativeAbstractAnimation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="PropertyAction"/>
-            <export module="Qt" version="4.7" type="PropertyAction"/>
-        </exports>
-        <property name="target" type="QObject" isWritable="true" isPointer="true"/>
-        <property name="property" type="string" isWritable="true"/>
-        <property name="properties" type="string" isWritable="true"/>
-        <property name="targets" type="QObject" isList="true"/>
-        <property name="exclude" type="QObject" isList="true"/>
-        <property name="value" type="QVariant" isWritable="true"/>
-        <signal name="valueChanged">
-            <param type="QVariant"/>
-        </signal>
-        <signal name="propertiesChanged">
-            <param type="string"/>
-        </signal>
-        <signal name="targetChanged"/>
-        <signal name="propertyChanged"/>
-    </type>
-    <type name="QDeclarativePropertyAnimation" extends="QDeclarativeAbstractAnimation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="PropertyAnimation"/>
-            <export module="Qt" version="4.7" type="PropertyAnimation"/>
-        </exports>
-        <property name="duration" type="int" isWritable="true"/>
-        <property name="from" type="QVariant" isWritable="true"/>
-        <property name="to" type="QVariant" isWritable="true"/>
-        <property name="easing" type="QEasingCurve" isWritable="true"/>
-        <property name="target" type="QObject" isWritable="true" isPointer="true"/>
-        <property name="property" type="string" isWritable="true"/>
-        <property name="properties" type="string" isWritable="true"/>
-        <property name="targets" type="QObject" isList="true"/>
-        <property name="exclude" type="QObject" isList="true"/>
-        <signal name="durationChanged">
-            <param type="int"/>
-        </signal>
-        <signal name="fromChanged">
-            <param type="QVariant"/>
-        </signal>
-        <signal name="toChanged">
-            <param type="QVariant"/>
-        </signal>
-        <signal name="easingChanged">
-            <param type="QEasingCurve"/>
-        </signal>
-        <signal name="propertiesChanged">
-            <param type="string"/>
-        </signal>
-        <signal name="targetChanged"/>
-        <signal name="propertyChanged"/>
-    </type>
-    <type name="QDeclarativePropertyChanges" extends="QDeclarativeStateOperation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="PropertyChanges"/>
-            <export module="Qt" version="4.7" type="PropertyChanges"/>
-        </exports>
-        <property name="target" type="QObject" isWritable="true" isPointer="true"/>
-        <property name="restoreEntryValues" type="bool" isWritable="true"/>
-        <property name="explicit" type="bool" isWritable="true"/>
-    </type>
-    <type name="QDeclarativePropertyMap" extends="QObject">
-        <signal name="valueChanged">
-            <param name="key" type="string"/>
-            <param name="value" type="QVariant"/>
-        </signal>
-        <method name="keys" type="QStringList"/>
-    </type>
-    <type name="QDeclarativeRectangle" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Rectangle"/>
-            <export module="Qt" version="4.7" type="Rectangle"/>
-        </exports>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="gradient" type="QDeclarativeGradient" isWritable="true" isPointer="true"/>
-        <property name="border" type="QDeclarativePen" isPointer="true"/>
-        <property name="radius" type="qreal" isWritable="true"/>
-        <signal name="colorChanged"/>
-        <signal name="radiusChanged"/>
-    </type>
-    <type name="QDeclarativeRepeater" defaultProperty="delegate" extends="QDeclarativeItem">
-        <exports>
-            <export module="Qt" version="4.7" type="Repeater"/>
-            <export module="QtQuick" version="1.0" type="Repeater"/>
-        </exports>
-        <property name="model" type="QVariant" isWritable="true"/>
-        <property name="delegate" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="count" type="int"/>
-        <signal name="modelChanged"/>
-        <signal name="delegateChanged"/>
-        <signal name="countChanged"/>
-    </type>
-    <type name="QDeclarativeReverseGeocodeModel" extends="QDeclarativeGeoSearchModel">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="ReverseGeocodeModel"/>
-        </exports>
-        <property name="coordinate" type="QDeclarativeCoordinate" isWritable="true" isPointer="true"/>
-        <signal name="coordinateChanged">
-            <param name="coordinate" type="QDeclarativeCoordinate" isPointer="true"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeRotationAnimation" extends="QDeclarativePropertyAnimation">
-        <exports>
-            <export module="Qt" version="4.7" type="RotationAnimation"/>
-            <export module="QtQuick" version="1.0" type="RotationAnimation"/>
-        </exports>
-        <enum name="RotationDirection">
-            <enumerator name="Numerical" value="0"/>
-            <enumerator name="Shortest" value="1"/>
-            <enumerator name="Clockwise" value="2"/>
-            <enumerator name="Counterclockwise" value="3"/>
-        </enum>
-        <property name="from" type="qreal" isWritable="true"/>
-        <property name="to" type="qreal" isWritable="true"/>
-        <property name="direction" type="RotationDirection" isWritable="true"/>
-        <signal name="directionChanged"/>
-    </type>
-    <type name="QDeclarativeRow" defaultProperty="data" extends="QDeclarativeBasePositioner">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Row"/>
-            <export module="Qt" version="4.7" type="Row"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeScaleGrid" extends="QObject">
-        <property name="left" type="int" isWritable="true"/>
-        <property name="top" type="int" isWritable="true"/>
-        <property name="right" type="int" isWritable="true"/>
-        <property name="bottom" type="int" isWritable="true"/>
-        <signal name="borderChanged"/>
-    </type>
-    <type name="QDeclarativeScreenSaver" extends="QObject">
-        <exports>
-            <export module="QtMobility.systeminfo" version="1.1" type="ScreenSaver"/>
-        </exports>
-        <property name="screenSaverDelayed" type="bool" isWritable="true"/>
-        <method name="setScreenSaverDelayed">
-            <param name="on" type="bool"/>
-        </method>
-    </type>
-    <type name="QDeclarativeScriptAction" extends="QDeclarativeAbstractAnimation">
-        <exports>
-            <export module="Qt" version="4.7" type="ScriptAction"/>
-            <export module="QtQuick" version="1.0" type="ScriptAction"/>
-        </exports>
-        <property name="script" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="scriptName" type="string" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeSequentialAnimation" defaultProperty="animations" extends="QDeclarativeAnimationGroup">
-        <exports>
-            <export module="Qt" version="4.7" type="SequentialAnimation"/>
-            <export module="QtQuick" version="1.0" type="SequentialAnimation"/>
-        </exports>
-    </type>
-    <type name="QDeclarativeService" extends="QObject">
-        <exports>
-            <export module="QtMobility.serviceframework" version="1.1" type="Service"/>
-        </exports>
-        <property name="interfaceName" type="string" isWritable="true"/>
-        <property name="serviceName" type="string"/>
-        <property name="majorVersion" type="int"/>
-        <property name="minorVersion" type="int"/>
-        <property name="valid" type="bool"/>
-        <property name="serviceObject" type="QObject" isPointer="true"/>
-        <signal name="validChanged"/>
-        <signal name="serviceObjectChanged"/>
-        <signal name="interfaceNameChanged"/>
-        <signal name="serviceNameChanged"/>
-        <signal name="majorVersionChanged"/>
-        <signal name="minorVersionChanged"/>
-    </type>
-    <type name="QDeclarativeServiceList" extends="QObject">
-        <exports>
-            <export module="QtMobility.serviceframework" version="1.1" type="ServiceList"/>
-        </exports>
-        <enum name="MatchRule">
-            <enumerator name="Minimum" value="0"/>
-            <enumerator name="Exact" value="1"/>
-        </enum>
-        <property name="serviceName" type="string" isWritable="true"/>
-        <property name="interfaceName" type="string" isWritable="true"/>
-        <property name="majorVersion" type="int" isWritable="true"/>
-        <property name="minorVersion" type="int" isWritable="true"/>
-        <property name="services" type="QDeclarativeService" isList="true"/>
-        <property name="versionMatch" type="MatchRule" isWritable="true"/>
-        <signal name="servicesChanged">
-            <param type="QDeclarativeService"/>
-        </signal>
-        <signal name="serviceNameChanged"/>
-        <signal name="interfaceNameChanged"/>
-        <signal name="minorVersionChanged"/>
-        <signal name="majorVersionChanged"/>
-        <signal name="versionMatchChanged"/>
-    </type>
-    <type name="QDeclarativeSmoothedAnimation" extends="QDeclarativeNumberAnimation">
-        <exports>
-            <export module="Qt" version="4.7" type="SmoothedAnimation"/>
-            <export module="QtQuick" version="1.0" type="SmoothedAnimation"/>
-        </exports>
-        <enum name="ReversingMode">
-            <enumerator name="Eased" value="0"/>
-            <enumerator name="Immediate" value="1"/>
-            <enumerator name="Sync" value="2"/>
-        </enum>
-        <property name="velocity" type="qreal" isWritable="true"/>
-        <property name="reversingMode" type="ReversingMode" isWritable="true"/>
-        <property name="maximumEasingTime" type="qreal" isWritable="true"/>
-        <signal name="velocityChanged"/>
-        <signal name="reversingModeChanged"/>
-        <signal name="maximumEasingTimeChanged"/>
-    </type>
-    <type name="QDeclarativeSpringAnimation" extends="QDeclarativeNumberAnimation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="SpringAnimation"/>
-            <export module="Qt" version="4.7" type="SpringAnimation"/>
-        </exports>
-        <property name="velocity" type="qreal" isWritable="true"/>
-        <property name="spring" type="qreal" isWritable="true"/>
-        <property name="damping" type="qreal" isWritable="true"/>
-        <property name="epsilon" type="qreal" isWritable="true"/>
-        <property name="modulus" type="qreal" isWritable="true"/>
-        <property name="mass" type="qreal" isWritable="true"/>
-        <signal name="modulusChanged"/>
-        <signal name="massChanged"/>
-        <signal name="syncChanged"/>
-    </type>
-    <type name="QDeclarativeState" defaultProperty="changes" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="State"/>
-            <export module="QtQuick" version="1.0" type="State"/>
-        </exports>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="when" type="QDeclarativeBinding" isWritable="true" isPointer="true"/>
-        <property name="extend" type="string" isWritable="true"/>
-        <property name="changes" type="QDeclarativeStateOperation" isList="true"/>
-        <signal name="completed"/>
-    </type>
-    <type name="QDeclarativeStateChangeScript" extends="QDeclarativeStateOperation">
-        <exports>
-            <export module="Qt" version="4.7" type="StateChangeScript"/>
-            <export module="QtQuick" version="1.0" type="StateChangeScript"/>
-        </exports>
-        <property name="script" type="QDeclarativeScriptString" isWritable="true"/>
-        <property name="name" type="string" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeStateGroup" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="StateGroup"/>
-            <export module="QtQuick" version="1.0" type="StateGroup"/>
-        </exports>
-        <property name="state" type="string" isWritable="true"/>
-        <property name="states" type="QDeclarativeState" isList="true"/>
-        <property name="transitions" type="QDeclarativeTransition" isList="true"/>
-        <signal name="stateChanged">
-            <param type="string"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeStateOperation" extends="QObject"/>
-    <type name="QDeclarativeSystemPalette" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="SystemPalette"/>
-            <export module="Qt" version="4.7" type="SystemPalette"/>
-        </exports>
-        <enum name="ColorGroup">
-            <enumerator name="Active" value="0"/>
-            <enumerator name="Inactive" value="2"/>
-            <enumerator name="Disabled" value="1"/>
-        </enum>
-        <property name="colorGroup" type="QDeclarativeSystemPalette.ColorGroup" isWritable="true"/>
-        <property name="window" type="QColor"/>
-        <property name="windowText" type="QColor"/>
-        <property name="base" type="QColor"/>
-        <property name="text" type="QColor"/>
-        <property name="alternateBase" type="QColor"/>
-        <property name="button" type="QColor"/>
-        <property name="buttonText" type="QColor"/>
-        <property name="light" type="QColor"/>
-        <property name="midlight" type="QColor"/>
-        <property name="dark" type="QColor"/>
-        <property name="mid" type="QColor"/>
-        <property name="shadow" type="QColor"/>
-        <property name="highlight" type="QColor"/>
-        <property name="highlightedText" type="QColor"/>
-        <signal name="paletteChanged"/>
-    </type>
-    <type name="QDeclarativeText" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Text"/>
-            <export module="Qt" version="4.7" type="Text"/>
-        </exports>
-        <enum name="HAlignment">
-            <enumerator name="AlignLeft" value="1"/>
-            <enumerator name="AlignRight" value="2"/>
-            <enumerator name="AlignHCenter" value="4"/>
-        </enum>
-        <enum name="VAlignment">
-            <enumerator name="AlignTop" value="32"/>
-            <enumerator name="AlignBottom" value="64"/>
-            <enumerator name="AlignVCenter" value="128"/>
-        </enum>
-        <enum name="TextStyle">
-            <enumerator name="Normal" value="0"/>
-            <enumerator name="Outline" value="1"/>
-            <enumerator name="Raised" value="2"/>
-            <enumerator name="Sunken" value="3"/>
-        </enum>
-        <enum name="TextFormat">
-            <enumerator name="PlainText" value="0"/>
-            <enumerator name="RichText" value="1"/>
-            <enumerator name="AutoText" value="2"/>
-            <enumerator name="StyledText" value="4"/>
-        </enum>
-        <enum name="TextElideMode">
-            <enumerator name="ElideLeft" value="0"/>
-            <enumerator name="ElideRight" value="1"/>
-            <enumerator name="ElideMiddle" value="2"/>
-            <enumerator name="ElideNone" value="3"/>
-        </enum>
-        <enum name="WrapMode">
-            <enumerator name="NoWrap" value="0"/>
-            <enumerator name="WordWrap" value="1"/>
-            <enumerator name="WrapAnywhere" value="3"/>
-            <enumerator name="WrapAtWordBoundaryOrAnywhere" value="4"/>
-            <enumerator name="Wrap" value="4"/>
-        </enum>
-        <property name="text" type="string" isWritable="true"/>
-        <property name="font" type="QFont" isWritable="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="style" type="TextStyle" isWritable="true"/>
-        <property name="styleColor" type="QColor" isWritable="true"/>
-        <property name="horizontalAlignment" type="HAlignment" isWritable="true"/>
-        <property name="verticalAlignment" type="VAlignment" isWritable="true"/>
-        <property name="wrapMode" type="WrapMode" isWritable="true"/>
-        <property name="textFormat" type="TextFormat" isWritable="true"/>
-        <property name="elide" type="TextElideMode" isWritable="true"/>
-        <property name="paintedWidth" type="qreal"/>
-        <property name="paintedHeight" type="qreal"/>
-        <signal name="textChanged">
-            <param name="text" type="string"/>
-        </signal>
-        <signal name="linkActivated">
-            <param name="link" type="string"/>
-        </signal>
-        <signal name="fontChanged">
-            <param name="font" type="QFont"/>
-        </signal>
-        <signal name="colorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="styleChanged">
-            <param name="style" type="TextStyle"/>
-        </signal>
-        <signal name="styleColorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="horizontalAlignmentChanged">
-            <param name="alignment" type="HAlignment"/>
-        </signal>
-        <signal name="verticalAlignmentChanged">
-            <param name="alignment" type="VAlignment"/>
-        </signal>
-        <signal name="wrapModeChanged"/>
-        <signal name="textFormatChanged">
-            <param name="textFormat" type="TextFormat"/>
-        </signal>
-        <signal name="elideModeChanged">
-            <param name="mode" type="TextElideMode"/>
-        </signal>
-        <signal name="paintedSizeChanged"/>
-    </type>
-    <type name="QDeclarativeTextEdit" defaultProperty="data" extends="QDeclarativePaintedItem">
-        <exports>
-            <export module="Qt" version="4.7" type="TextEdit"/>
-            <export module="QtQuick" version="1.0" type="TextEdit"/>
-        </exports>
-        <enum name="HAlignment">
-            <enumerator name="AlignLeft" value="1"/>
-            <enumerator name="AlignRight" value="2"/>
-            <enumerator name="AlignHCenter" value="4"/>
-        </enum>
-        <enum name="VAlignment">
-            <enumerator name="AlignTop" value="32"/>
-            <enumerator name="AlignBottom" value="64"/>
-            <enumerator name="AlignVCenter" value="128"/>
-        </enum>
-        <enum name="TextFormat">
-            <enumerator name="PlainText" value="0"/>
-            <enumerator name="RichText" value="1"/>
-            <enumerator name="AutoText" value="2"/>
-        </enum>
-        <enum name="WrapMode">
-            <enumerator name="NoWrap" value="0"/>
-            <enumerator name="WordWrap" value="1"/>
-            <enumerator name="WrapAnywhere" value="3"/>
-            <enumerator name="WrapAtWordBoundaryOrAnywhere" value="4"/>
-            <enumerator name="Wrap" value="4"/>
-        </enum>
-        <property name="text" type="string" isWritable="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="selectionColor" type="QColor" isWritable="true"/>
-        <property name="selectedTextColor" type="QColor" isWritable="true"/>
-        <property name="font" type="QFont" isWritable="true"/>
-        <property name="horizontalAlignment" type="HAlignment" isWritable="true"/>
-        <property name="verticalAlignment" type="VAlignment" isWritable="true"/>
-        <property name="wrapMode" type="WrapMode" isWritable="true"/>
-        <property name="paintedWidth" type="qreal"/>
-        <property name="paintedHeight" type="qreal"/>
-        <property name="textFormat" type="TextFormat" isWritable="true"/>
-        <property name="readOnly" type="bool" isWritable="true"/>
-        <property name="cursorVisible" type="bool" isWritable="true"/>
-        <property name="cursorPosition" type="int" isWritable="true"/>
-        <property name="cursorRectangle" type="QRect"/>
-        <property name="cursorDelegate" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="selectionStart" type="int"/>
-        <property name="selectionEnd" type="int"/>
-        <property name="selectedText" type="string"/>
-        <property name="activeFocusOnPress" type="bool" isWritable="true"/>
-        <property name="persistentSelection" type="bool" isWritable="true"/>
-        <property name="textMargin" type="qreal" isWritable="true"/>
-        <property name="inputMethodHints" type="Qt.InputMethodHints" isWritable="true"/>
-        <property name="selectByMouse" type="bool" isWritable="true"/>
-        <signal name="textChanged">
-            <param type="string"/>
-        </signal>
-        <signal name="paintedSizeChanged"/>
-        <signal name="cursorPositionChanged"/>
-        <signal name="cursorRectangleChanged"/>
-        <signal name="selectionStartChanged"/>
-        <signal name="selectionEndChanged"/>
-        <signal name="selectionChanged"/>
-        <signal name="colorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="selectionColorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="selectedTextColorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="fontChanged">
-            <param name="font" type="QFont"/>
-        </signal>
-        <signal name="horizontalAlignmentChanged">
-            <param name="alignment" type="HAlignment"/>
-        </signal>
-        <signal name="verticalAlignmentChanged">
-            <param name="alignment" type="VAlignment"/>
-        </signal>
-        <signal name="wrapModeChanged"/>
-        <signal name="textFormatChanged">
-            <param name="textFormat" type="TextFormat"/>
-        </signal>
-        <signal name="readOnlyChanged">
-            <param name="isReadOnly" type="bool"/>
-        </signal>
-        <signal name="cursorVisibleChanged">
-            <param name="isCursorVisible" type="bool"/>
-        </signal>
-        <signal name="cursorDelegateChanged"/>
-        <signal name="activeFocusOnPressChanged">
-            <param name="activeFocusOnPressed" type="bool"/>
-        </signal>
-        <signal name="persistentSelectionChanged">
-            <param name="isPersistentSelection" type="bool"/>
-        </signal>
-        <signal name="textMarginChanged">
-            <param name="textMargin" type="qreal"/>
-        </signal>
-        <signal name="selectByMouseChanged">
-            <param name="selectByMouse" type="bool"/>
-        </signal>
-        <method name="selectAll"/>
-        <method name="selectWord"/>
-        <method name="select">
-            <param name="start" type="int"/>
-            <param name="end" type="int"/>
-        </method>
-        <method name="cut"/>
-        <method name="copy"/>
-        <method name="paste"/>
-        <method name="openSoftwareInputPanel"/>
-        <method name="closeSoftwareInputPanel"/>
-        <method name="positionToRectangle" type="QRectF">
-            <param type="int"/>
-        </method>
-        <method name="positionAt" type="int">
-            <param name="x" type="int"/>
-            <param name="y" type="int"/>
-        </method>
-        <method name="moveCursorSelection">
-            <param name="pos" type="int"/>
-        </method>
-    </type>
-    <type name="QDeclarativeTextInput" defaultProperty="data" extends="QDeclarativePaintedItem">
-        <exports>
-            <export module="QtQuick" version="1.0" type="TextInput"/>
-            <export module="Qt" version="4.7" type="TextInput"/>
-        </exports>
-        <enum name="EchoMode">
-            <enumerator name="Normal" value="0"/>
-            <enumerator name="NoEcho" value="1"/>
-            <enumerator name="Password" value="2"/>
-            <enumerator name="PasswordEchoOnEdit" value="3"/>
-        </enum>
-        <enum name="HAlignment">
-            <enumerator name="AlignLeft" value="1"/>
-            <enumerator name="AlignRight" value="2"/>
-            <enumerator name="AlignHCenter" value="4"/>
-        </enum>
-        <property name="text" type="string" isWritable="true"/>
-        <property name="color" type="QColor" isWritable="true"/>
-        <property name="selectionColor" type="QColor" isWritable="true"/>
-        <property name="selectedTextColor" type="QColor" isWritable="true"/>
-        <property name="font" type="QFont" isWritable="true"/>
-        <property name="horizontalAlignment" type="HAlignment" isWritable="true"/>
-        <property name="readOnly" type="bool" isWritable="true"/>
-        <property name="cursorVisible" type="bool" isWritable="true"/>
-        <property name="cursorPosition" type="int" isWritable="true"/>
-        <property name="cursorRectangle" type="QRect"/>
-        <property name="cursorDelegate" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="selectionStart" type="int"/>
-        <property name="selectionEnd" type="int"/>
-        <property name="selectedText" type="string"/>
-        <property name="maximumLength" type="int" isWritable="true"/>
-        <property name="validator" type="QValidator" isWritable="true" isPointer="true"/>
-        <property name="inputMask" type="string" isWritable="true"/>
-        <property name="inputMethodHints" type="Qt.InputMethodHints" isWritable="true"/>
-        <property name="acceptableInput" type="bool"/>
-        <property name="echoMode" type="EchoMode" isWritable="true"/>
-        <property name="activeFocusOnPress" type="bool" isWritable="true"/>
-        <property name="passwordCharacter" type="string" isWritable="true"/>
-        <property name="displayText" type="string"/>
-        <property name="autoScroll" type="bool" isWritable="true"/>
-        <property name="selectByMouse" type="bool" isWritable="true"/>
-        <signal name="textChanged"/>
-        <signal name="cursorPositionChanged"/>
-        <signal name="selectionStartChanged"/>
-        <signal name="selectionEndChanged"/>
-        <signal name="selectedTextChanged"/>
-        <signal name="accepted"/>
-        <signal name="acceptableInputChanged"/>
-        <signal name="colorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="selectionColorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="selectedTextColorChanged">
-            <param name="color" type="QColor"/>
-        </signal>
-        <signal name="fontChanged">
-            <param name="font" type="QFont"/>
-        </signal>
-        <signal name="horizontalAlignmentChanged">
-            <param name="alignment" type="HAlignment"/>
-        </signal>
-        <signal name="readOnlyChanged">
-            <param name="isReadOnly" type="bool"/>
-        </signal>
-        <signal name="cursorVisibleChanged">
-            <param name="isCursorVisible" type="bool"/>
-        </signal>
-        <signal name="cursorDelegateChanged"/>
-        <signal name="maximumLengthChanged">
-            <param name="maximumLength" type="int"/>
-        </signal>
-        <signal name="validatorChanged"/>
-        <signal name="inputMaskChanged">
-            <param name="inputMask" type="string"/>
-        </signal>
-        <signal name="echoModeChanged">
-            <param name="echoMode" type="EchoMode"/>
-        </signal>
-        <signal name="passwordCharacterChanged"/>
-        <signal name="displayTextChanged"/>
-        <signal name="activeFocusOnPressChanged">
-            <param name="activeFocusOnPress" type="bool"/>
-        </signal>
-        <signal name="autoScrollChanged">
-            <param name="autoScroll" type="bool"/>
-        </signal>
-        <signal name="selectByMouseChanged">
-            <param name="selectByMouse" type="bool"/>
-        </signal>
-        <method name="selectAll"/>
-        <method name="selectWord"/>
-        <method name="select">
-            <param name="start" type="int"/>
-            <param name="end" type="int"/>
-        </method>
-        <method name="cut"/>
-        <method name="copy"/>
-        <method name="paste"/>
-        <method name="positionAt" type="int">
-            <param name="x" type="int"/>
-        </method>
-        <method name="positionToRectangle" type="QRectF">
-            <param name="pos" type="int"/>
-        </method>
-        <method name="moveCursorSelection">
-            <param name="pos" type="int"/>
-        </method>
-        <method name="openSoftwareInputPanel"/>
-        <method name="closeSoftwareInputPanel"/>
-    </type>
-    <type name="QDeclarativeThemeEffect" extends="QObject">
-        <exports>
-            <export module="QtMobility.feedback" version="1.1" type="ThemeEffect"/>
-        </exports>
-        <enum name="ThemeEffect">
-            <enumerator name="Basic" value="0"/>
-            <enumerator name="Sensitive" value="1"/>
-            <enumerator name="BasicButton" value="2"/>
-            <enumerator name="SensitiveButton" value="3"/>
-            <enumerator name="BasicKeypad" value="4"/>
-            <enumerator name="SensitiveKeypad" value="5"/>
-            <enumerator name="BasicSlider" value="6"/>
-            <enumerator name="SensitiveSlider" value="7"/>
-            <enumerator name="BasicItem" value="8"/>
-            <enumerator name="SensitiveItem" value="9"/>
-            <enumerator name="ItemScroll" value="10"/>
-            <enumerator name="ItemPick" value="11"/>
-            <enumerator name="ItemDrop" value="12"/>
-            <enumerator name="ItemMoveOver" value="13"/>
-            <enumerator name="BounceEffect" value="14"/>
-            <enumerator name="CheckBox" value="15"/>
-            <enumerator name="MultipleCheckBox" value="16"/>
-            <enumerator name="Editor" value="17"/>
-            <enumerator name="TextSelection" value="18"/>
-            <enumerator name="BlankSelection" value="19"/>
-            <enumerator name="LineSelection" value="20"/>
-            <enumerator name="EmptyLineSelection" value="21"/>
-            <enumerator name="PopUp" value="22"/>
-            <enumerator name="PopupOpen" value="23"/>
-            <enumerator name="PopupClose" value="24"/>
-            <enumerator name="Flick" value="25"/>
-            <enumerator name="StopFlick" value="26"/>
-            <enumerator name="MultiPointTouchActivate" value="27"/>
-            <enumerator name="RotateStep" value="28"/>
-            <enumerator name="LongPress" value="29"/>
-            <enumerator name="PositiveTacticon" value="30"/>
-            <enumerator name="NeutralTacticon" value="31"/>
-            <enumerator name="NegativeTacticon" value="32"/>
-            <enumerator name="NumberOfThemeEffects" value="33"/>
-            <enumerator name="ThemeUser" value="65535"/>
-        </enum>
-        <property name="supported" type="bool"/>
-        <property name="effect" type="ThemeEffect" isWritable="true"/>
-        <signal name="effectChanged"/>
-        <method name="play"/>
-    </type>
-    <type name="QDeclarativeTimer" extends="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="Timer"/>
-            <export module="QtQuick" version="1.0" type="Timer"/>
-        </exports>
-        <property name="interval" type="int" isWritable="true"/>
-        <property name="running" type="bool" isWritable="true"/>
-        <property name="repeat" type="bool" isWritable="true"/>
-        <property name="triggeredOnStart" type="bool" isWritable="true"/>
-        <property name="parent" type="QObject" isPointer="true"/>
-        <signal name="triggered"/>
-        <signal name="runningChanged"/>
-        <signal name="intervalChanged"/>
-        <signal name="repeatChanged"/>
-        <signal name="triggeredOnStartChanged"/>
-        <method name="start"/>
-        <method name="stop"/>
-        <method name="restart"/>
-    </type>
-    <type name="QDeclarativeTransition" defaultProperty="animations" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Transition"/>
-            <export module="Qt" version="4.7" type="Transition"/>
-        </exports>
-        <property name="from" type="string" isWritable="true"/>
-        <property name="to" type="string" isWritable="true"/>
-        <property name="reversible" type="bool" isWritable="true"/>
-        <property name="animations" type="QDeclarativeAbstractAnimation" isList="true"/>
-        <signal name="fromChanged"/>
-        <signal name="toChanged"/>
-        <signal name="reversibleChanged"/>
-    </type>
-    <type name="QDeclarativeTranslate" extends="QGraphicsTransform">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Translate"/>
-            <export module="Qt" version="4.7" type="Translate"/>
-        </exports>
-        <property name="x" type="qreal" isWritable="true"/>
-        <property name="y" type="qreal" isWritable="true"/>
-        <signal name="xChanged"/>
-        <signal name="yChanged"/>
-    </type>
-    <type name="QDeclarativeValueType" extends="QObject"/>
-    <type name="QDeclarativeVector3dAnimation" extends="QDeclarativePropertyAnimation">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Vector3dAnimation"/>
-            <export module="Qt" version="4.7" type="Vector3dAnimation"/>
-        </exports>
-        <property name="from" type="QVector3D" isWritable="true"/>
-        <property name="to" type="QVector3D" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeVideo" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtMultimediaKit" version="1.1" type="Video"/>
-        </exports>
-        <enum name="FillMode">
-            <enumerator name="Stretch" value="0"/>
-            <enumerator name="PreserveAspectFit" value="1"/>
-            <enumerator name="PreserveAspectCrop" value="2"/>
-        </enum>
-        <enum name="Status">
-            <enumerator name="UnknownStatus" value="0"/>
-            <enumerator name="NoMedia" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Loaded" value="3"/>
-            <enumerator name="Stalled" value="4"/>
-            <enumerator name="Buffering" value="5"/>
-            <enumerator name="Buffered" value="6"/>
-            <enumerator name="EndOfMedia" value="7"/>
-            <enumerator name="InvalidMedia" value="8"/>
-        </enum>
-        <enum name="Error">
-            <enumerator name="NoError" value="0"/>
-            <enumerator name="ResourceError" value="1"/>
-            <enumerator name="FormatError" value="2"/>
-            <enumerator name="NetworkError" value="3"/>
-            <enumerator name="AccessDenied" value="4"/>
-            <enumerator name="ServiceMissing" value="5"/>
-        </enum>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="autoLoad" type="bool" isWritable="true"/>
-        <property name="playing" type="bool" isWritable="true"/>
-        <property name="paused" type="bool" isWritable="true"/>
-        <property name="status" type="Status"/>
-        <property name="duration" type="int"/>
-        <property name="position" type="int" isWritable="true"/>
-        <property name="volume" type="qreal" isWritable="true"/>
-        <property name="muted" type="bool" isWritable="true"/>
-        <property name="hasAudio" type="bool"/>
-        <property name="hasVideo" type="bool"/>
-        <property name="bufferProgress" type="int"/>
-        <property name="seekable" type="bool"/>
-        <property name="playbackRate" type="qreal" isWritable="true"/>
-        <property name="error" type="Error"/>
-        <property name="errorString" type="string"/>
-        <property name="fillMode" type="FillMode" isWritable="true"/>
-        <property name="metaData" type="QDeclarativeMediaMetaData" isPointer="true"/>
-        <signal name="sourceChanged"/>
-        <signal name="autoLoadChanged"/>
-        <signal name="playingChanged"/>
-        <signal name="pausedChanged"/>
-        <signal name="started"/>
-        <signal name="resumed"/>
-        <signal name="paused"/>
-        <signal name="stopped"/>
-        <signal name="statusChanged"/>
-        <signal name="durationChanged"/>
-        <signal name="positionChanged"/>
-        <signal name="volumeChanged"/>
-        <signal name="mutedChanged"/>
-        <signal name="hasAudioChanged"/>
-        <signal name="hasVideoChanged"/>
-        <signal name="bufferProgressChanged"/>
-        <signal name="seekableChanged"/>
-        <signal name="playbackRateChanged"/>
-        <signal name="errorChanged"/>
-        <signal name="error">
-            <param name="error" type="QDeclarativeVideo.Error"/>
-            <param name="errorString" type="string"/>
-        </signal>
-        <method name="play"/>
-        <method name="pause"/>
-        <method name="stop"/>
-    </type>
-    <type name="QDeclarativeViewSection" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="ViewSection"/>
-            <export module="Qt" version="4.7" type="ViewSection"/>
-        </exports>
-        <enum name="SectionCriteria">
-            <enumerator name="FullString" value="0"/>
-            <enumerator name="FirstCharacter" value="1"/>
-        </enum>
-        <property name="property" type="string" isWritable="true"/>
-        <property name="criteria" type="SectionCriteria" isWritable="true"/>
-        <property name="delegate" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <signal name="propertyChanged"/>
-        <signal name="criteriaChanged"/>
-        <signal name="delegateChanged"/>
-    </type>
-    <type name="QDeclarativeVisualDataModel" defaultProperty="delegate" extends="QDeclarativeVisualModel">
-        <exports>
-            <export module="QtQuick" version="1.0" type="VisualDataModel"/>
-            <export module="Qt" version="4.7" type="VisualDataModel"/>
-        </exports>
-        <property name="model" type="QVariant" isWritable="true"/>
-        <property name="delegate" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="part" type="string" isWritable="true"/>
-        <property name="parts" type="QObject" isPointer="true"/>
-        <property name="rootIndex" type="QVariant" isWritable="true"/>
-        <signal name="createdPackage">
-            <param name="index" type="int"/>
-            <param name="package" type="QDeclarativePackage" isPointer="true"/>
-        </signal>
-        <signal name="destroyingPackage">
-            <param name="package" type="QDeclarativePackage" isPointer="true"/>
-        </signal>
-        <signal name="rootIndexChanged"/>
-        <method name="modelIndex" type="QVariant">
-            <param name="idx" type="int"/>
-        </method>
-        <method name="parentModelIndex" type="QVariant"/>
-    </type>
-    <type name="QDeclarativeVisualDataModelParts" extends="QObject"/>
-    <type name="QDeclarativeVisualItemModel" defaultProperty="children" extends="QDeclarativeVisualModel">
-        <exports>
-            <export module="QtQuick" version="1.0" type="VisualItemModel"/>
-            <export module="Qt" version="4.7" type="VisualItemModel"/>
-        </exports>
-        <property name="children" type="QDeclarativeItem" isList="true"/>
-        <signal name="childrenChanged"/>
-    </type>
-    <type name="QDeclarativeVisualModel" extends="QObject">
-        <property name="count" type="int"/>
-        <signal name="countChanged"/>
-        <signal name="itemsInserted">
-            <param name="index" type="int"/>
-            <param name="count" type="int"/>
-        </signal>
-        <signal name="itemsRemoved">
-            <param name="index" type="int"/>
-            <param name="count" type="int"/>
-        </signal>
-        <signal name="itemsMoved">
-            <param name="from" type="int"/>
-            <param name="to" type="int"/>
-            <param name="count" type="int"/>
-        </signal>
-        <signal name="modelReset"/>
-        <signal name="createdItem">
-            <param name="index" type="int"/>
-            <param name="item" type="QDeclarativeItem" isPointer="true"/>
-        </signal>
-        <signal name="destroyingItem">
-            <param name="item" type="QDeclarativeItem" isPointer="true"/>
-        </signal>
-    </type>
-    <type name="QDeclarativeWebSettings" extends="QObject">
-        <property name="standardFontFamily" type="string" isWritable="true"/>
-        <property name="fixedFontFamily" type="string" isWritable="true"/>
-        <property name="serifFontFamily" type="string" isWritable="true"/>
-        <property name="sansSerifFontFamily" type="string" isWritable="true"/>
-        <property name="cursiveFontFamily" type="string" isWritable="true"/>
-        <property name="fantasyFontFamily" type="string" isWritable="true"/>
-        <property name="minimumFontSize" type="int" isWritable="true"/>
-        <property name="minimumLogicalFontSize" type="int" isWritable="true"/>
-        <property name="defaultFontSize" type="int" isWritable="true"/>
-        <property name="defaultFixedFontSize" type="int" isWritable="true"/>
-        <property name="autoLoadImages" type="bool" isWritable="true"/>
-        <property name="javascriptEnabled" type="bool" isWritable="true"/>
-        <property name="javaEnabled" type="bool" isWritable="true"/>
-        <property name="pluginsEnabled" type="bool" isWritable="true"/>
-        <property name="privateBrowsingEnabled" type="bool" isWritable="true"/>
-        <property name="javascriptCanOpenWindows" type="bool" isWritable="true"/>
-        <property name="javascriptCanAccessClipboard" type="bool" isWritable="true"/>
-        <property name="developerExtrasEnabled" type="bool" isWritable="true"/>
-        <property name="linksIncludedInFocusChain" type="bool" isWritable="true"/>
-        <property name="zoomTextOnly" type="bool" isWritable="true"/>
-        <property name="printElementBackgrounds" type="bool" isWritable="true"/>
-        <property name="offlineStorageDatabaseEnabled" type="bool" isWritable="true"/>
-        <property name="offlineWebApplicationCacheEnabled" type="bool" isWritable="true"/>
-        <property name="localStorageDatabaseEnabled" type="bool" isWritable="true"/>
-        <property name="localContentCanAccessRemoteUrls" type="bool" isWritable="true"/>
-    </type>
-    <type name="QDeclarativeWebView" defaultProperty="data" extends="QDeclarativeItem">
-        <exports>
-            <export module="QtWebKit" version="1.0" type="WebView"/>
-        </exports>
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Ready" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Error" value="3"/>
-        </enum>
-        <property name="title" type="string"/>
-        <property name="icon" type="QPixmap"/>
-        <property name="statusText" type="string"/>
-        <property name="html" type="string" isWritable="true"/>
-        <property name="pressGrabTime" type="int" isWritable="true"/>
-        <property name="preferredWidth" type="int" isWritable="true"/>
-        <property name="preferredHeight" type="int" isWritable="true"/>
-        <property name="url" type="QUrl" isWritable="true"/>
-        <property name="progress" type="qreal"/>
-        <property name="status" type="Status"/>
-        <property name="reload" type="QAction" isPointer="true"/>
-        <property name="back" type="QAction" isPointer="true"/>
-        <property name="forward" type="QAction" isPointer="true"/>
-        <property name="stop" type="QAction" isPointer="true"/>
-        <property name="settings" type="QDeclarativeWebSettings" isPointer="true"/>
-        <property name="javaScriptWindowObjects" type="QObject" isList="true"/>
-        <property name="newWindowComponent" type="QDeclarativeComponent" isWritable="true" isPointer="true"/>
-        <property name="newWindowParent" type="QDeclarativeItem" isWritable="true" isPointer="true"/>
-        <property name="renderingEnabled" type="bool" isWritable="true"/>
-        <property name="contentsSize" type="QSize"/>
-        <property name="contentsScale" type="qreal" isWritable="true"/>
-        <signal name="preferredWidthChanged"/>
-        <signal name="preferredHeightChanged"/>
-        <signal name="urlChanged"/>
-        <signal name="progressChanged"/>
-        <signal name="statusChanged">
-            <param type="Status"/>
-        </signal>
-        <signal name="titleChanged">
-            <param type="string"/>
-        </signal>
-        <signal name="iconChanged"/>
-        <signal name="statusTextChanged"/>
-        <signal name="htmlChanged"/>
-        <signal name="pressGrabTimeChanged"/>
-        <signal name="newWindowComponentChanged"/>
-        <signal name="newWindowParentChanged"/>
-        <signal name="renderingEnabledChanged"/>
-        <signal name="contentsSizeChanged">
-            <param type="QSize"/>
-        </signal>
-        <signal name="contentsScaleChanged"/>
-        <signal name="loadStarted"/>
-        <signal name="loadFinished"/>
-        <signal name="loadFailed"/>
-        <signal name="doubleClick">
-            <param name="clickX" type="int"/>
-            <param name="clickY" type="int"/>
-        </signal>
-        <signal name="zoomTo">
-            <param name="zoom" type="qreal"/>
-            <param name="centerX" type="int"/>
-            <param name="centerY" type="int"/>
-        </signal>
-        <signal name="alert">
-            <param name="message" type="string"/>
-        </signal>
-        <method name="evaluateJavaScript" type="QVariant">
-            <param type="string"/>
-        </method>
-        <method name="heuristicZoom" type="bool">
-            <param name="clickX" type="int"/>
-            <param name="clickY" type="int"/>
-            <param name="maxzoom" type="qreal"/>
-        </method>
-    </type>
-    <type name="QDeclarativeWorkerScript" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="WorkerScript"/>
-            <export module="Qt" version="4.7" type="WorkerScript"/>
-        </exports>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <signal name="sourceChanged"/>
-        <signal name="message">
-            <param name="messageObject" type="QScriptValue"/>
-        </signal>
-        <method name="sendMessage">
-            <param type="QScriptValue"/>
-        </method>
-    </type>
-    <type name="QDeclarativeXmlListModel" defaultProperty="roles" extends="QListModelInterface">
-        <exports>
-            <export module="QtQuick" version="1.0" type="XmlListModel"/>
-            <export module="Qt" version="4.7" type="XmlListModel"/>
-        </exports>
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Ready" value="1"/>
-            <enumerator name="Loading" value="2"/>
-            <enumerator name="Error" value="3"/>
-        </enum>
-        <property name="status" type="Status"/>
-        <property name="progress" type="qreal"/>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="xml" type="string" isWritable="true"/>
-        <property name="query" type="string" isWritable="true"/>
-        <property name="namespaceDeclarations" type="string" isWritable="true"/>
-        <property name="roles" type="QDeclarativeXmlListModelRole" isList="true"/>
-        <property name="count" type="int"/>
-        <signal name="statusChanged">
-            <param type="QDeclarativeXmlListModel.Status"/>
-        </signal>
-        <signal name="progressChanged">
-            <param name="progress" type="qreal"/>
-        </signal>
-        <signal name="countChanged"/>
-        <signal name="sourceChanged"/>
-        <signal name="xmlChanged"/>
-        <signal name="queryChanged"/>
-        <signal name="namespaceDeclarationsChanged"/>
-        <method name="reload"/>
-        <method name="get" type="QScriptValue">
-            <param name="index" type="int"/>
-        </method>
-        <method name="errorString" type="string"/>
-    </type>
-    <type name="QDeclarativeXmlListModelRole" extends="QObject">
-        <exports>
-            <export module="QtQuick" version="1.0" type="XmlRole"/>
-            <export module="Qt" version="4.7" type="XmlRole"/>
-        </exports>
-        <property name="name" type="string" isWritable="true"/>
-        <property name="query" type="string" isWritable="true"/>
-        <property name="isKey" type="bool" isWritable="true"/>
-        <signal name="nameChanged"/>
-        <signal name="queryChanged"/>
-        <signal name="isKeyChanged"/>
-    </type>
-    <type name="QDoubleValidator" extends="QValidator">
-        <exports>
-            <export module="QtQuick" version="1.0" type="DoubleValidator"/>
-            <export module="Qt" version="4.7" type="DoubleValidator"/>
-        </exports>
-        <enum name="Notation">
-            <enumerator name="StandardNotation" value="0"/>
-            <enumerator name="ScientificNotation" value="1"/>
-        </enum>
-        <property name="bottom" type="double" isWritable="true"/>
-        <property name="top" type="double" isWritable="true"/>
-        <property name="decimals" type="int" isWritable="true"/>
-        <property name="notation" type="Notation" isWritable="true"/>
-    </type>
-    <type name="QFeedbackActuator" extends="QObject">
-        <exports>
-            <export module="QtMobility.feedback" version="1.1" type="Actuator"/>
-        </exports>
-        <enum name="Capability">
-            <enumerator name="Envelope" value="0"/>
-            <enumerator name="Period" value="1"/>
-        </enum>
-        <enum name="State">
-            <enumerator name="Busy" value="0"/>
-            <enumerator name="Ready" value="1"/>
-            <enumerator name="Unknown" value="2"/>
-        </enum>
-        <property name="id" type="int"/>
-        <property name="name" type="string"/>
-        <property name="state" type="QFeedbackActuator.State"/>
-        <property name="valid" type="bool"/>
-        <property name="enabled" type="bool" isWritable="true"/>
-        <signal name="enabledChanged"/>
-        <method name="isCapabilitySupported" type="bool">
-            <param type="Capability"/>
-        </method>
-    </type>
-    <type name="QFeedbackEffect" extends="QObject">
-        <enum name="ThemeEffect">
-            <enumerator name="ThemeBasic" value="0"/>
-            <enumerator name="ThemeSensitive" value="1"/>
-            <enumerator name="ThemeBasicButton" value="2"/>
-            <enumerator name="ThemeSensitiveButton" value="3"/>
-            <enumerator name="ThemeBasicKeypad" value="4"/>
-            <enumerator name="ThemeSensitiveKeypad" value="5"/>
-            <enumerator name="ThemeBasicSlider" value="6"/>
-            <enumerator name="ThemeSensitiveSlider" value="7"/>
-            <enumerator name="ThemeBasicItem" value="8"/>
-            <enumerator name="ThemeSensitiveItem" value="9"/>
-            <enumerator name="ThemeItemScroll" value="10"/>
-            <enumerator name="ThemeItemPick" value="11"/>
-            <enumerator name="ThemeItemDrop" value="12"/>
-            <enumerator name="ThemeItemMoveOver" value="13"/>
-            <enumerator name="ThemeBounceEffect" value="14"/>
-            <enumerator name="ThemeCheckBox" value="15"/>
-            <enumerator name="ThemeMultipleCheckBox" value="16"/>
-            <enumerator name="ThemeEditor" value="17"/>
-            <enumerator name="ThemeTextSelection" value="18"/>
-            <enumerator name="ThemeBlankSelection" value="19"/>
-            <enumerator name="ThemeLineSelection" value="20"/>
-            <enumerator name="ThemeEmptyLineSelection" value="21"/>
-            <enumerator name="ThemePopUp" value="22"/>
-            <enumerator name="ThemePopupOpen" value="23"/>
-            <enumerator name="ThemePopupClose" value="24"/>
-            <enumerator name="ThemeFlick" value="25"/>
-            <enumerator name="ThemeStopFlick" value="26"/>
-            <enumerator name="ThemeMultiPointTouchActivate" value="27"/>
-            <enumerator name="ThemeRotateStep" value="28"/>
-            <enumerator name="ThemeLongPress" value="29"/>
-            <enumerator name="ThemePositiveTacticon" value="30"/>
-            <enumerator name="ThemeNeutralTacticon" value="31"/>
-            <enumerator name="ThemeNegativeTacticon" value="32"/>
-            <enumerator name="NumberOfThemeEffects" value="33"/>
-            <enumerator name="ThemeUser" value="65535"/>
-        </enum>
-        <enum name="Duration">
-            <enumerator name="Infinite" value="-1"/>
-        </enum>
-        <enum name="State">
-            <enumerator name="Stopped" value="0"/>
-            <enumerator name="Paused" value="1"/>
-            <enumerator name="Running" value="2"/>
-            <enumerator name="Loading" value="3"/>
-        </enum>
-        <enum name="ErrorType">
-            <enumerator name="UnknownError" value="0"/>
-            <enumerator name="DeviceBusy" value="1"/>
-        </enum>
-        <property name="duration" type="int"/>
-        <property name="state" type="State"/>
-        <signal name="error">
-            <param type="QFeedbackEffect.ErrorType"/>
-        </signal>
-        <signal name="stateChanged"/>
-        <method name="start"/>
-        <method name="stop"/>
-        <method name="pause"/>
-    </type>
-    <type name="QFeedbackFileEffect" extends="QFeedbackEffect">
-        <property name="loaded" type="bool" isWritable="true"/>
-        <property name="source" type="QUrl" isWritable="true"/>
-    </type>
-    <type name="QFeedbackHapticsEffect" extends="QFeedbackEffect">
-        <property name="duration" type="int" isWritable="true"/>
-        <property name="intensity" type="qreal" isWritable="true"/>
-        <property name="attackTime" type="int" isWritable="true"/>
-        <property name="attackIntensity" type="qreal" isWritable="true"/>
-        <property name="fadeTime" type="int" isWritable="true"/>
-        <property name="fadeIntensity" type="int" isWritable="true"/>
-        <property name="period" type="int" isWritable="true"/>
-        <property name="actuator" type="QFeedbackActuator" isWritable="true" isPointer="true"/>
-    </type>
-    <type name="QGeoMapCircleObject" extends="QGeoMapObject">
-        <property name="center" type="QGeoCoordinate" isWritable="true"/>
-        <property name="radius" type="qreal" isWritable="true"/>
-        <property name="pen" type="QPen" isWritable="true"/>
-        <property name="brush" type="QBrush" isWritable="true"/>
-        <signal name="centerChanged">
-            <param name="center" type="QGeoCoordinate"/>
-        </signal>
-        <signal name="radiusChanged">
-            <param name="radius" type="qreal"/>
-        </signal>
-        <signal name="penChanged">
-            <param name="pen" type="QPen"/>
-        </signal>
-        <signal name="brushChanged">
-            <param name="brush" type="QBrush"/>
-        </signal>
-    </type>
-    <type name="QGeoMapGroupObject" extends="QGeoMapObject">
-        <signal name="childAdded">
-            <param name="childObject" type="QGeoMapObject" isPointer="true"/>
-        </signal>
-        <signal name="childRemoved">
-            <param name="childObject" type="QGeoMapObject" isPointer="true"/>
-        </signal>
-    </type>
-    <type name="QGeoMapObject" extends="QObject">
-        <exports>
-            <export module="QtMobility.location" version="1.1" type="QGeoMapObject"/>
-        </exports>
-        <property name="zValue" type="int" isWritable="true"/>
-        <property name="visible" type="bool" isWritable="true"/>
-        <property name="selected" type="bool" isWritable="true"/>
-        <signal name="zValueChanged">
-            <param name="zValue" type="int"/>
-        </signal>
-        <signal name="visibleChanged">
-            <param name="visible" type="bool"/>
-        </signal>
-        <signal name="selectedChanged">
-            <param name="selected" type="bool"/>
-        </signal>
-    </type>
-    <type name="QGeoMapPixmapObject" extends="QGeoMapObject">
-        <property name="coordinate" type="QGeoCoordinate" isWritable="true"/>
-        <property name="pixmap" type="QPixmap" isWritable="true"/>
-        <property name="offset" type="QPoint" isWritable="true"/>
-        <signal name="coordinateChanged">
-            <param name="coordinate" type="QGeoCoordinate"/>
-        </signal>
-        <signal name="pixmapChanged">
-            <param name="pixmap" type="QPixmap"/>
-        </signal>
-        <signal name="offsetChanged">
-            <param name="offset" type="QPoint"/>
-        </signal>
-    </type>
-    <type name="QGeoMapPolygonObject" extends="QGeoMapObject">
-        <property name="path" type="QList&lt;QGeoCoordinate&gt;" isWritable="true"/>
-        <property name="pen" type="QPen" isWritable="true"/>
-        <property name="brush" type="QBrush" isWritable="true"/>
-        <signal name="pathChanged">
-            <param name="path" type="QList&lt;QGeoCoordinate&gt;"/>
-        </signal>
-        <signal name="penChanged">
-            <param name="pen" type="QPen"/>
-        </signal>
-        <signal name="brushChanged">
-            <param name="brush" type="QBrush"/>
-        </signal>
-    </type>
-    <type name="QGeoMapPolylineObject" extends="QGeoMapObject">
-        <property name="path" type="QList&lt;QGeoCoordinate&gt;" isWritable="true"/>
-        <property name="pen" type="QPen" isWritable="true"/>
-        <signal name="pathChanged">
-            <param name="path" type="QList&lt;QGeoCoordinate&gt;"/>
-        </signal>
-        <signal name="penChanged">
-            <param name="pen" type="QPen"/>
-        </signal>
-    </type>
-    <type name="QGeoMapRectangleObject" extends="QGeoMapObject">
-        <property name="topLeft" type="QGeoCoordinate" isWritable="true"/>
-        <property name="bottomRight" type="QGeoCoordinate" isWritable="true"/>
-        <property name="pen" type="QPen" isWritable="true"/>
-        <property name="brush" type="QBrush" isWritable="true"/>
-        <signal name="topLeftChanged">
-            <param name="topLeft" type="QGeoCoordinate"/>
-        </signal>
-        <signal name="bottomRightChanged">
-            <param name="bottomRight" type="QGeoCoordinate"/>
-        </signal>
-        <signal name="penChanged">
-            <param name="pen" type="QPen"/>
-        </signal>
-        <signal name="brushChanged">
-            <param name="brush" type="QBrush"/>
-        </signal>
-    </type>
-    <type name="QGeoMapTextObject" extends="QGeoMapObject">
-        <property name="coordinate" type="QGeoCoordinate" isWritable="true"/>
-        <property name="text" type="string" isWritable="true"/>
-        <property name="font" type="QFont" isWritable="true"/>
-        <property name="pen" type="QPen" isWritable="true"/>
-        <property name="brush" type="QBrush" isWritable="true"/>
-        <property name="offset" type="QPoint" isWritable="true"/>
-        <property name="alignment" type="Qt.Alignment" isWritable="true"/>
-        <signal name="coordinateChanged">
-            <param name="coordinate" type="QGeoCoordinate"/>
-        </signal>
-        <signal name="textChanged">
-            <param name="text" type="string"/>
-        </signal>
-        <signal name="fontChanged">
-            <param name="font" type="QFont"/>
-        </signal>
-        <signal name="penChanged">
-            <param name="pen" type="QPen"/>
-        </signal>
-        <signal name="brushChanged">
-            <param name="brush" type="QBrush"/>
-        </signal>
-        <signal name="offsetChanged">
-            <param name="offset" type="QPoint"/>
-        </signal>
-        <signal name="alignmentChanged">
-            <param name="alignment" type="Qt.Alignment"/>
-        </signal>
-    </type>
-    <type name="QGesture" extends="QObject">
-        <exports>
-            <export module="Qt.labs.gestures" version="1.0" type="Gesture"/>
-        </exports>
-        <property name="state" type="Qt.GestureState"/>
-        <property name="gestureType" type="Qt.GestureType"/>
-        <property name="gestureCancelPolicy" type="QGesture.GestureCancelPolicy" isWritable="true"/>
-        <property name="hotSpot" type="QPointF" isWritable="true"/>
-        <property name="hasHotSpot" type="bool"/>
-    </type>
-    <type name="QGraphicsObject" defaultProperty="children" extends="QObject">
-        <property name="parent" type="QGraphicsObject" isWritable="true" isPointer="true"/>
-        <property name="opacity" type="qreal" isWritable="true"/>
-        <property name="enabled" type="bool" isWritable="true"/>
-        <property name="visible" type="bool" isWritable="true"/>
-        <property name="pos" type="QPointF" isWritable="true"/>
-        <property name="x" type="qreal" isWritable="true"/>
-        <property name="y" type="qreal" isWritable="true"/>
-        <property name="z" type="qreal" isWritable="true"/>
-        <property name="rotation" type="qreal" isWritable="true"/>
-        <property name="scale" type="qreal" isWritable="true"/>
-        <property name="transformOriginPoint" type="QPointF" isWritable="true"/>
-        <property name="effect" type="QGraphicsEffect" isWritable="true" isPointer="true"/>
-        <property name="children" type="QGraphicsObject" isList="true"/>
-        <property name="width" type="qreal" isWritable="true"/>
-        <property name="height" type="qreal" isWritable="true"/>
-        <signal name="parentChanged"/>
-        <signal name="opacityChanged"/>
-        <signal name="visibleChanged"/>
-        <signal name="enabledChanged"/>
-        <signal name="xChanged"/>
-        <signal name="yChanged"/>
-        <signal name="zChanged"/>
-        <signal name="rotationChanged"/>
-        <signal name="scaleChanged"/>
-        <signal name="childrenChanged"/>
-        <signal name="widthChanged"/>
-        <signal name="heightChanged"/>
-    </type>
-    <type name="QGraphicsRotation" extends="QGraphicsTransform">
-        <exports>
-            <export module="Qt" version="4.7" type="Rotation"/>
-            <export module="QtQuick" version="1.0" type="Rotation"/>
-        </exports>
-        <property name="origin" type="QVector3D" isWritable="true"/>
-        <property name="angle" type="qreal" isWritable="true"/>
-        <property name="axis" type="QVector3D" isWritable="true"/>
-        <signal name="originChanged"/>
-        <signal name="angleChanged"/>
-        <signal name="axisChanged"/>
-    </type>
-    <type name="QGraphicsScale" extends="QGraphicsTransform">
-        <exports>
-            <export module="QtQuick" version="1.0" type="Scale"/>
-            <export module="Qt" version="4.7" type="Scale"/>
-        </exports>
-        <property name="origin" type="QVector3D" isWritable="true"/>
-        <property name="xScale" type="qreal" isWritable="true"/>
-        <property name="yScale" type="qreal" isWritable="true"/>
-        <property name="zScale" type="qreal" isWritable="true"/>
-        <signal name="originChanged"/>
-        <signal name="xScaleChanged"/>
-        <signal name="yScaleChanged"/>
-        <signal name="zScaleChanged"/>
-        <signal name="scaleChanged"/>
-    </type>
-    <type name="QGraphicsTransform" extends="QObject"/>
-    <type name="QGraphicsWidget" defaultProperty="children" extends="__extended__.QGraphicsWidget">
-        <exports>
-            <export module="Qt" version="4.7" type="QGraphicsWidget"/>
-            <export module="QtQuick" version="1.0" type="QGraphicsWidget"/>
-        </exports>
-        <property name="anchors" type="QDeclarativeAnchors" isPointer="true"/>
-        <property name="left" type="QDeclarativeAnchorLine"/>
-        <property name="right" type="QDeclarativeAnchorLine"/>
-        <property name="horizontalCenter" type="QDeclarativeAnchorLine"/>
-        <property name="top" type="QDeclarativeAnchorLine"/>
-        <property name="bottom" type="QDeclarativeAnchorLine"/>
-        <property name="verticalCenter" type="QDeclarativeAnchorLine"/>
-    </type>
-    <type name="QIntValidator" extends="QValidator">
-        <exports>
-            <export module="Qt" version="4.7" type="IntValidator"/>
-            <export module="QtQuick" version="1.0" type="IntValidator"/>
-        </exports>
-        <property name="bottom" type="int" isWritable="true"/>
-        <property name="top" type="int" isWritable="true"/>
-    </type>
-    <type name="QListModelInterface" extends="QObject">
-        <signal name="itemsInserted">
-            <param name="index" type="int"/>
-            <param name="count" type="int"/>
-        </signal>
-        <signal name="itemsRemoved">
-            <param name="index" type="int"/>
-            <param name="count" type="int"/>
-        </signal>
-        <signal name="itemsMoved">
-            <param name="from" type="int"/>
-            <param name="to" type="int"/>
-            <param name="count" type="int"/>
-        </signal>
-        <signal name="itemsChanged">
-            <param name="index" type="int"/>
-            <param name="count" type="int"/>
-            <param name="roles" type="QList&lt;int&gt;"/>
-        </signal>
-    </type>
-    <type name="QMagnetometer" extends="QSensor">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="Magnetometer"/>
-        </exports>
-    </type>
-    <type name="QMagnetometerReading" extends="QSensorReading">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="MagnetometerReading"/>
-        </exports>
-        <property name="x" type="qreal"/>
-        <property name="y" type="qreal"/>
-        <property name="z" type="qreal"/>
-        <property name="calibrationLevel" type="qreal"/>
-    </type>
-    <type name="QObject">
-        <exports>
-            <export module="Qt" version="4.7" type="QtObject"/>
-            <export module="QtQuick" version="1.0" type="QtObject"/>
-        </exports>
-        <property name="objectName" type="string" isWritable="true"/>
-        <signal name="destroyed">
-            <param type="QObject" isPointer="true"/>
-        </signal>
-        <signal name="destroyed"/>
-        <method name="deleteLater"/>
-    </type>
-    <type name="QOrientationReading" extends="QSensorReading">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="OrientationReading"/>
-        </exports>
-        <enum name="Orientation">
-            <enumerator name="Undefined" value="0"/>
-            <enumerator name="TopUp" value="1"/>
-            <enumerator name="TopDown" value="2"/>
-            <enumerator name="LeftUp" value="3"/>
-            <enumerator name="RightUp" value="4"/>
-            <enumerator name="FaceUp" value="5"/>
-            <enumerator name="FaceDown" value="6"/>
-        </enum>
-        <property name="orientation" type="Orientation"/>
-    </type>
-    <type name="QOrientationSensor" extends="QSensor">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="OrientationSensor"/>
-        </exports>
-    </type>
-    <type name="QPanGesture" extends="QGesture">
-        <exports>
-            <export module="Qt.labs.gestures" version="1.0" type="PanGesture"/>
-        </exports>
-        <property name="lastOffset" type="QPointF" isWritable="true"/>
-        <property name="offset" type="QPointF" isWritable="true"/>
-        <property name="delta" type="QPointF"/>
-        <property name="acceleration" type="qreal" isWritable="true"/>
-        <property name="horizontalVelocity" type="qreal" isWritable="true"/>
-        <property name="verticalVelocity" type="qreal" isWritable="true"/>
-    </type>
-    <type name="QPinchGesture" extends="QGesture">
-        <exports>
-            <export module="Qt.labs.gestures" version="1.0" type="PinchGesture"/>
-        </exports>
-        <enum name="ChangeFlag">
-            <enumerator name="ScaleFactorChanged" value="1"/>
-            <enumerator name="RotationAngleChanged" value="2"/>
-            <enumerator name="CenterPointChanged" value="4"/>
-        </enum>
-        <enum name="ChangeFlags">
-            <enumerator name="ScaleFactorChanged" value="1"/>
-            <enumerator name="RotationAngleChanged" value="2"/>
-            <enumerator name="CenterPointChanged" value="4"/>
-        </enum>
-        <property name="totalChangeFlags" type="ChangeFlags" isWritable="true"/>
-        <property name="changeFlags" type="ChangeFlags" isWritable="true"/>
-        <property name="totalScaleFactor" type="qreal" isWritable="true"/>
-        <property name="lastScaleFactor" type="qreal" isWritable="true"/>
-        <property name="scaleFactor" type="qreal" isWritable="true"/>
-        <property name="totalRotationAngle" type="qreal" isWritable="true"/>
-        <property name="lastRotationAngle" type="qreal" isWritable="true"/>
-        <property name="rotationAngle" type="qreal" isWritable="true"/>
-        <property name="startCenterPoint" type="QPointF" isWritable="true"/>
-        <property name="lastCenterPoint" type="QPointF" isWritable="true"/>
-        <property name="centerPoint" type="QPointF" isWritable="true"/>
-    </type>
-    <type name="QProximityReading" extends="QSensorReading">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="ProximityReading"/>
-        </exports>
-        <property name="close" type="bool"/>
-    </type>
-    <type name="QProximitySensor" extends="QSensor">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="ProximitySensor"/>
-        </exports>
-    </type>
-    <type name="QRegExpValidator" extends="QValidator">
-        <exports>
-            <export module="QtQuick" version="1.0" type="RegExpValidator"/>
-            <export module="Qt" version="4.7" type="RegExpValidator"/>
-        </exports>
-        <property name="regExp" type="QRegExp" isWritable="true"/>
-    </type>
-    <type name="QRotationReading" extends="QSensorReading">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="RotationReading"/>
-        </exports>
-        <property name="x" type="qreal"/>
-        <property name="y" type="qreal"/>
-        <property name="z" type="qreal"/>
-    </type>
-    <type name="QRotationSensor" extends="QSensor">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="RotationSensor"/>
-        </exports>
-    </type>
-    <type name="QSensor" extends="QObject">
-        <property name="sensorid" type="QByteArray" isWritable="true"/>
-        <property name="type" type="QByteArray"/>
-        <property name="connectedToBackend" type="bool"/>
-        <property name="availableDataRates" type="QtMobility.qrangelist"/>
-        <property name="dataRate" type="int" isWritable="true"/>
-        <property name="reading" type="QSensorReading" isPointer="true"/>
-        <property name="busy" type="bool"/>
-        <property name="active" type="bool" isWritable="true"/>
-        <property name="outputRanges" type="QtMobility.qoutputrangelist"/>
-        <property name="outputRange" type="int" isWritable="true"/>
-        <property name="description" type="string"/>
-        <property name="error" type="int"/>
-        <signal name="busyChanged"/>
-        <signal name="activeChanged"/>
-        <signal name="readingChanged"/>
-        <signal name="sensorError">
-            <param name="error" type="int"/>
-        </signal>
-        <method name="start" type="bool"/>
-        <method name="stop"/>
-        <method name="connectToBackend" type="bool"/>
-    </type>
-    <type name="QSensorReading" extends="QObject">
-        <property name="timestamp" type="QtMobility.qtimestamp"/>
-    </type>
-    <type name="QSoundEffect" extends="QObject">
-        <exports>
-            <export module="QtMultimediaKit" version="1.1" type="SoundEffect"/>
-        </exports>
-        <enum name="Loop">
-            <enumerator name="Infinite" value="-2"/>
-        </enum>
-        <enum name="Status">
-            <enumerator name="Null" value="0"/>
-            <enumerator name="Loading" value="1"/>
-            <enumerator name="Ready" value="2"/>
-            <enumerator name="Error" value="3"/>
-        </enum>
-        <property name="source" type="QUrl" isWritable="true"/>
-        <property name="loops" type="int" isWritable="true"/>
-        <property name="volume" type="qreal" isWritable="true"/>
-        <property name="muted" type="bool" isWritable="true"/>
-        <property name="playing" type="bool"/>
-        <property name="status" type="Status"/>
-        <signal name="sourceChanged"/>
-        <signal name="loopCountChanged"/>
-        <signal name="volumeChanged"/>
-        <signal name="mutedChanged"/>
-        <signal name="loadedChanged"/>
-        <signal name="playingChanged"/>
-        <signal name="statusChanged"/>
-        <method name="play"/>
-        <method name="stop"/>
-    </type>
-    <type name="QSwipeGesture" extends="QGesture">
-        <exports>
-            <export module="Qt.labs.gestures" version="1.0" type="SwipeGesture"/>
-        </exports>
-        <enum name="SwipeDirection">
-            <enumerator name="NoDirection" value="0"/>
-            <enumerator name="Left" value="1"/>
-            <enumerator name="Right" value="2"/>
-            <enumerator name="Up" value="3"/>
-            <enumerator name="Down" value="4"/>
-        </enum>
-        <property name="horizontalDirection" type="SwipeDirection"/>
-        <property name="verticalDirection" type="SwipeDirection"/>
-        <property name="swipeAngle" type="qreal" isWritable="true"/>
-        <property name="velocity" type="qreal" isWritable="true"/>
-    </type>
-    <type name="QSystemDeviceInfo" extends="QObject">
-        <enum name="BatteryStatus">
-            <enumerator name="NoBatteryLevel" value="0"/>
-            <enumerator name="BatteryCritical" value="1"/>
-            <enumerator name="BatteryVeryLow" value="2"/>
-            <enumerator name="BatteryLow" value="3"/>
-            <enumerator name="BatteryNormal" value="4"/>
-        </enum>
-        <enum name="PowerState">
-            <enumerator name="UnknownPower" value="0"/>
-            <enumerator name="BatteryPower" value="1"/>
-            <enumerator name="WallPower" value="2"/>
-            <enumerator name="WallPowerChargingBattery" value="3"/>
-        </enum>
-        <enum name="InputMethod">
-            <enumerator name="Keys" value="1"/>
-            <enumerator name="Keypad" value="2"/>
-            <enumerator name="Keyboard" value="4"/>
-            <enumerator name="SingleTouch" value="8"/>
-            <enumerator name="MultiTouch" value="16"/>
-            <enumerator name="Mouse" value="32"/>
-        </enum>
-        <enum name="InputMethodFlags">
-            <enumerator name="Keys" value="1"/>
-            <enumerator name="Keypad" value="2"/>
-            <enumerator name="Keyboard" value="4"/>
-            <enumerator name="SingleTouch" value="8"/>
-            <enumerator name="MultiTouch" value="16"/>
-            <enumerator name="Mouse" value="32"/>
-        </enum>
-        <enum name="Profile">
-            <enumerator name="UnknownProfile" value="0"/>
-            <enumerator name="SilentProfile" value="1"/>
-            <enumerator name="NormalProfile" value="2"/>
-            <enumerator name="LoudProfile" value="3"/>
-            <enumerator name="VibProfile" value="4"/>
-            <enumerator name="OfflineProfile" value="5"/>
-            <enumerator name="PowersaveProfile" value="6"/>
-            <enumerator name="CustomProfile" value="7"/>
-            <enumerator name="BeepProfile" value="8"/>
-        </enum>
-        <enum name="SimStatus">
-            <enumerator name="SimNotAvailable" value="0"/>
-            <enumerator name="SingleSimAvailable" value="1"/>
-            <enumerator name="DualSimAvailable" value="2"/>
-            <enumerator name="SimLocked" value="3"/>
-        </enum>
-        <property name="currentProfile" type="Profile"/>
-        <property name="powerState" type="PowerState"/>
-        <property name="simStatus" type="SimStatus"/>
-        <property name="batteryStatus" type="BatteryStatus"/>
-        <property name="inputMethodType" type="InputMethodFlags"/>
-        <property name="imei" type="string"/>
-        <property name="imsi" type="string"/>
-        <property name="manufacturer" type="string"/>
-        <property name="model" type="string"/>
-        <property name="productName" type="string"/>
-        <property name="batteryLevel" type="int"/>
-        <property name="isDeviceLocked" type="bool"/>
-        <property name="currentBluetoothPowerState" type="bool"/>
-        <property name="currentPowerState" type="QSystemDeviceInfo.PowerState"/>
-        <signal name="batteryLevelChanged">
-            <param name="level" type="int"/>
-        </signal>
-        <signal name="batteryStatusChanged">
-            <param name="batteryStatus" type="QSystemDeviceInfo.BatteryStatus"/>
-        </signal>
-        <signal name="powerStateChanged">
-            <param name="powerState" type="QSystemDeviceInfo.PowerState"/>
-        </signal>
-        <signal name="currentProfileChanged">
-            <param name="currentProfile" type="QSystemDeviceInfo.Profile"/>
-        </signal>
-        <signal name="bluetoothStateChanged">
-            <param name="on" type="bool"/>
-        </signal>
-    </type>
-    <type name="QSystemDisplayInfo" extends="QObject">
-        <exports>
-            <export module="QtMobility.systeminfo" version="1.1" type="DisplayInfo"/>
-        </exports>
-    </type>
-    <type name="QSystemInfo" extends="QObject">
-        <enum name="Version">
-            <enumerator name="Os" value="1"/>
-            <enumerator name="QtCore" value="2"/>
-            <enumerator name="Firmware" value="3"/>
-            <enumerator name="QtMobility" value="4"/>
-        </enum>
-        <enum name="Feature">
-            <enumerator name="BluetoothFeature" value="0"/>
-            <enumerator name="CameraFeature" value="1"/>
-            <enumerator name="FmradioFeature" value="2"/>
-            <enumerator name="IrFeature" value="3"/>
-            <enumerator name="LedFeature" value="4"/>
-            <enumerator name="MemcardFeature" value="5"/>
-            <enumerator name="UsbFeature" value="6"/>
-            <enumerator name="VibFeature" value="7"/>
-            <enumerator name="WlanFeature" value="8"/>
-            <enumerator name="SimFeature" value="9"/>
-            <enumerator name="LocationFeature" value="10"/>
-            <enumerator name="VideoOutFeature" value="11"/>
-            <enumerator name="HapticsFeature" value="12"/>
-        </enum>
-        <property name="currentLanguage" type="string"/>
-        <property name="availableLanguages" type="QStringList"/>
-        <property name="currentCountryCode" type="string"/>
-        <signal name="currentLanguageChanged">
-            <param type="string"/>
-        </signal>
-    </type>
-    <type name="QSystemNetworkInfo" extends="QObject">
-        <enum name="NetworkStatus">
-            <enumerator name="UndefinedStatus" value="0"/>
-            <enumerator name="NoNetworkAvailable" value="1"/>
-            <enumerator name="EmergencyOnly" value="2"/>
-            <enumerator name="Searching" value="3"/>
-            <enumerator name="Busy" value="4"/>
-            <enumerator name="Connected" value="5"/>
-            <enumerator name="HomeNetwork" value="6"/>
-            <enumerator name="Denied" value="7"/>
-            <enumerator name="Roaming" value="8"/>
-        </enum>
-        <enum name="NetworkMode">
-            <enumerator name="UnknownMode" value="0"/>
-            <enumerator name="GsmMode" value="1"/>
-            <enumerator name="CdmaMode" value="2"/>
-            <enumerator name="WcdmaMode" value="3"/>
-            <enumerator name="WlanMode" value="4"/>
-            <enumerator name="EthernetMode" value="5"/>
-            <enumerator name="BluetoothMode" value="6"/>
-            <enumerator name="WimaxMode" value="7"/>
-        </enum>
-        <property name="cellId" type="int"/>
-        <property name="locationAreaCode" type="int"/>
-        <property name="currentMobileCountryCode" type="string"/>
-        <property name="currentMobileNetworkCode" type="string"/>
-        <property name="homeMobileCountryCode" type="string"/>
-        <property name="homeMobileNetworkCode" type="string"/>
-        <property name="currentMode" type="QSystemNetworkInfo.NetworkMode"/>
-        <signal name="networkStatusChanged">
-            <param type="QSystemNetworkInfo.NetworkMode"/>
-            <param type="QSystemNetworkInfo.NetworkStatus"/>
-        </signal>
-        <signal name="networkSignalStrengthChanged">
-            <param type="QSystemNetworkInfo.NetworkMode"/>
-            <param type="int"/>
-        </signal>
-        <signal name="currentMobileCountryCodeChanged">
-            <param type="string"/>
-        </signal>
-        <signal name="currentMobileNetworkCodeChanged">
-            <param type="string"/>
-        </signal>
-        <signal name="networkNameChanged">
-            <param type="QSystemNetworkInfo.NetworkMode"/>
-            <param type="string"/>
-        </signal>
-        <signal name="networkModeChanged">
-            <param type="QSystemNetworkInfo.NetworkMode"/>
-        </signal>
-        <method name="networkStatus" type="QSystemNetworkInfo.NetworkStatus">
-            <param name="mode" type="QSystemNetworkInfo.NetworkMode"/>
-        </method>
-        <method name="networkSignalStrength" type="int">
-            <param name="mode" type="QSystemNetworkInfo.NetworkMode"/>
-        </method>
-        <method name="macAddress" type="string">
-            <param name="mode" type="QSystemNetworkInfo.NetworkMode"/>
-        </method>
-        <method name="currentMode" type="QSystemNetworkInfo.NetworkMode"/>
-        <method name="networkName" type="string">
-            <param name="mode" type="QSystemNetworkInfo.NetworkMode"/>
-        </method>
-    </type>
-    <type name="QSystemStorageInfo" extends="QObject">
-        <exports>
-            <export module="QtMobility.systeminfo" version="1.1" type="StorageInfo"/>
-        </exports>
-        <enum name="DriveType">
-            <enumerator name="NoDrive" value="0"/>
-            <enumerator name="InternalDrive" value="1"/>
-            <enumerator name="RemovableDrive" value="2"/>
-            <enumerator name="RemoteDrive" value="3"/>
-            <enumerator name="CdromDrive" value="4"/>
-        </enum>
-        <property name="logicalDrives" type="QStringList"/>
-        <signal name="logicalDriveChanged">
-            <param name="added" type="bool"/>
-            <param name="vol" type="string"/>
-        </signal>
-        <method name="totalDiskSpace" type="qlonglong">
-            <param name="driveVolume" type="string"/>
-        </method>
-        <method name="availableDiskSpace" type="qlonglong">
-            <param name="driveVolume" type="string"/>
-        </method>
-        <method name="typeForDrive" type="QSystemStorageInfo.DriveType">
-            <param name="driveVolume" type="string"/>
-        </method>
-    </type>
-    <type name="QTapAndHoldGesture" extends="QGesture">
-        <exports>
-            <export module="Qt.labs.gestures" version="1.0" type="TapAndHoldGesture"/>
-        </exports>
-        <property name="position" type="QPointF" isWritable="true"/>
-    </type>
-    <type name="QTapGesture" extends="QGesture">
-        <exports>
-            <export module="Qt.labs.gestures" version="1.0" type="TapGesture"/>
-        </exports>
-        <property name="position" type="QPointF" isWritable="true"/>
-    </type>
-    <type name="QTapReading" extends="QSensorReading">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="TapReading"/>
-        </exports>
-        <enum name="TapDirection">
-            <enumerator name="Undefined" value="0"/>
-            <enumerator name="X" value="1"/>
-            <enumerator name="Y" value="2"/>
-            <enumerator name="Z" value="4"/>
-            <enumerator name="X_Pos" value="17"/>
-            <enumerator name="Y_Pos" value="34"/>
-            <enumerator name="Z_Pos" value="68"/>
-            <enumerator name="X_Neg" value="257"/>
-            <enumerator name="Y_Neg" value="514"/>
-            <enumerator name="Z_Neg" value="1028"/>
-        </enum>
-        <property name="tapDirection" type="TapDirection"/>
-        <property name="doubleTap" type="bool"/>
-    </type>
-    <type name="QTapSensor" extends="QSensor">
-        <exports>
-            <export module="QtMobility.sensors" version="1.1" type="TapSensor"/>
-        </exports>
-    </type>
-    <type name="QValidator" extends="QObject"/>
-    <type name="QValueSpaceSubscriber" extends="QObject">
-        <exports>
-            <export module="QtMobility.publishsubscribe" version="1.1" type="ValueSpaceSubscriber"/>
-        </exports>
-        <property name="path" type="string" isWritable="true"/>
-        <property name="value" type="QVariant"/>
-        <signal name="contentsChanged"/>
-    </type>
-    <type name="Qt">
-        <enum name="GlobalColor">
-            <enumerator name="color0" value="0"/>
-            <enumerator name="color1" value="1"/>
-            <enumerator name="black" value="2"/>
-            <enumerator name="white" value="3"/>
-            <enumerator name="darkGray" value="4"/>
-            <enumerator name="gray" value="5"/>
-            <enumerator name="lightGray" value="6"/>
-            <enumerator name="red" value="7"/>
-            <enumerator name="green" value="8"/>
-            <enumerator name="blue" value="9"/>
-            <enumerator name="cyan" value="10"/>
-            <enumerator name="magenta" value="11"/>
-            <enumerator name="yellow" value="12"/>
-            <enumerator name="darkRed" value="13"/>
-            <enumerator name="darkGreen" value="14"/>
-            <enumerator name="darkBlue" value="15"/>
-            <enumerator name="darkCyan" value="16"/>
-            <enumerator name="darkMagenta" value="17"/>
-            <enumerator name="darkYellow" value="18"/>
-            <enumerator name="transparent" value="19"/>
-        </enum>
-        <enum name="KeyboardModifiers">
-            <enumerator name="NoModifier" value="0"/>
-            <enumerator name="ShiftModifier" value="33554432"/>
-            <enumerator name="ControlModifier" value="67108864"/>
-            <enumerator name="AltModifier" value="134217728"/>
-            <enumerator name="MetaModifier" value="268435456"/>
-            <enumerator name="KeypadModifier" value="536870912"/>
-            <enumerator name="GroupSwitchModifier" value="1073741824"/>
-            <enumerator name="KeyboardModifierMask" value="-33554432"/>
-        </enum>
-        <enum name="MouseButtons">
-            <enumerator name="NoButton" value="0"/>
-            <enumerator name="LeftButton" value="1"/>
-            <enumerator name="RightButton" value="2"/>
-            <enumerator name="MidButton" value="4"/>
-            <enumerator name="MiddleButton" value="4"/>
-            <enumerator name="XButton1" value="8"/>
-            <enumerator name="XButton2" value="16"/>
-            <enumerator name="MouseButtonMask" value="255"/>
-        </enum>
-        <enum name="Orientation">
-            <enumerator name="Horizontal" value="1"/>
-            <enumerator name="Vertical" value="2"/>
-        </enum>
-        <enum name="Orientations">
-            <enumerator name="Horizontal" value="1"/>
-            <enumerator name="Vertical" value="2"/>
-        </enum>
-        <enum name="FocusPolicy">
-            <enumerator name="NoFocus" value="0"/>
-            <enumerator name="TabFocus" value="1"/>
-            <enumerator name="ClickFocus" value="2"/>
-            <enumerator name="StrongFocus" value="11"/>
-            <enumerator name="WheelFocus" value="15"/>
-        </enum>
-        <enum name="SortOrder">
-            <enumerator name="AscendingOrder" value="0"/>
-            <enumerator name="DescendingOrder" value="1"/>
-        </enum>
-        <enum name="Alignment">
-            <enumerator name="AlignLeft" value="1"/>
-            <enumerator name="AlignLeading" value="1"/>
-            <enumerator name="AlignRight" value="2"/>
-            <enumerator name="AlignTrailing" value="2"/>
-            <enumerator name="AlignHCenter" value="4"/>
-            <enumerator name="AlignJustify" value="8"/>
-            <enumerator name="AlignAbsolute" value="16"/>
-            <enumerator name="AlignHorizontal_Mask" value="31"/>
-            <enumerator name="AlignTop" value="32"/>
-            <enumerator name="AlignBottom" value="64"/>
-            <enumerator name="AlignVCenter" value="128"/>
-            <enumerator name="AlignVertical_Mask" value="224"/>
-            <enumerator name="AlignCenter" value="132"/>
-        </enum>
-        <enum name="TextElideMode">
-            <enumerator name="ElideLeft" value="0"/>
-            <enumerator name="ElideRight" value="1"/>
-            <enumerator name="ElideMiddle" value="2"/>
-            <enumerator name="ElideNone" value="3"/>
-        </enum>
-        <enum name="WindowType">
-            <enumerator name="Widget" value="0"/>
-            <enumerator name="Window" value="1"/>
-            <enumerator name="Dialog" value="3"/>
-            <enumerator name="Sheet" value="5"/>
-            <enumerator name="Drawer" value="7"/>
-            <enumerator name="Popup" value="9"/>
-            <enumerator name="Tool" value="11"/>
-            <enumerator name="ToolTip" value="13"/>
-            <enumerator name="SplashScreen" value="15"/>
-            <enumerator name="Desktop" value="17"/>
-            <enumerator name="SubWindow" value="18"/>
-            <enumerator name="WindowType_Mask" value="255"/>
-            <enumerator name="MSWindowsFixedSizeDialogHint" value="256"/>
-            <enumerator name="MSWindowsOwnDC" value="512"/>
-            <enumerator name="X11BypassWindowManagerHint" value="1024"/>
-            <enumerator name="FramelessWindowHint" value="2048"/>
-            <enumerator name="WindowTitleHint" value="4096"/>
-            <enumerator name="WindowSystemMenuHint" value="8192"/>
-            <enumerator name="WindowMinimizeButtonHint" value="16384"/>
-            <enumerator name="WindowMaximizeButtonHint" value="32768"/>
-            <enumerator name="WindowMinMaxButtonsHint" value="49152"/>
-            <enumerator name="WindowContextHelpButtonHint" value="65536"/>
-            <enumerator name="WindowShadeButtonHint" value="131072"/>
-            <enumerator name="WindowStaysOnTopHint" value="262144"/>
-            <enumerator name="CustomizeWindowHint" value="33554432"/>
-            <enumerator name="WindowStaysOnBottomHint" value="67108864"/>
-            <enumerator name="WindowCloseButtonHint" value="134217728"/>
-            <enumerator name="MacWindowToolBarButtonHint" value="268435456"/>
-            <enumerator name="BypassGraphicsProxyWidget" value="536870912"/>
-            <enumerator name="WindowOkButtonHint" value="524288"/>
-            <enumerator name="WindowCancelButtonHint" value="1048576"/>
-            <enumerator name="WindowSoftkeysVisibleHint" value="1073741824"/>
-            <enumerator name="WindowSoftkeysRespondHint" value="-2147483648"/>
-        </enum>
-        <enum name="WindowFlags">
-            <enumerator name="Widget" value="0"/>
-            <enumerator name="Window" value="1"/>
-            <enumerator name="Dialog" value="3"/>
-            <enumerator name="Sheet" value="5"/>
-            <enumerator name="Drawer" value="7"/>
-            <enumerator name="Popup" value="9"/>
-            <enumerator name="Tool" value="11"/>
-            <enumerator name="ToolTip" value="13"/>
-            <enumerator name="SplashScreen" value="15"/>
-            <enumerator name="Desktop" value="17"/>
-            <enumerator name="SubWindow" value="18"/>
-            <enumerator name="WindowType_Mask" value="255"/>
-            <enumerator name="MSWindowsFixedSizeDialogHint" value="256"/>
-            <enumerator name="MSWindowsOwnDC" value="512"/>
-            <enumerator name="X11BypassWindowManagerHint" value="1024"/>
-            <enumerator name="FramelessWindowHint" value="2048"/>
-            <enumerator name="WindowTitleHint" value="4096"/>
-            <enumerator name="WindowSystemMenuHint" value="8192"/>
-            <enumerator name="WindowMinimizeButtonHint" value="16384"/>
-            <enumerator name="WindowMaximizeButtonHint" value="32768"/>
-            <enumerator name="WindowMinMaxButtonsHint" value="49152"/>
-            <enumerator name="WindowContextHelpButtonHint" value="65536"/>
-            <enumerator name="WindowShadeButtonHint" value="131072"/>
-            <enumerator name="WindowStaysOnTopHint" value="262144"/>
-            <enumerator name="CustomizeWindowHint" value="33554432"/>
-            <enumerator name="WindowStaysOnBottomHint" value="67108864"/>
-            <enumerator name="WindowCloseButtonHint" value="134217728"/>
-            <enumerator name="MacWindowToolBarButtonHint" value="268435456"/>
-            <enumerator name="BypassGraphicsProxyWidget" value="536870912"/>
-            <enumerator name="WindowOkButtonHint" value="524288"/>
-            <enumerator name="WindowCancelButtonHint" value="1048576"/>
-            <enumerator name="WindowSoftkeysVisibleHint" value="1073741824"/>
-            <enumerator name="WindowSoftkeysRespondHint" value="-2147483648"/>
-        </enum>
-        <enum name="WindowState">
-            <enumerator name="WindowNoState" value="0"/>
-            <enumerator name="WindowMinimized" value="1"/>
-            <enumerator name="WindowMaximized" value="2"/>
-            <enumerator name="WindowFullScreen" value="4"/>
-            <enumerator name="WindowActive" value="8"/>
-        </enum>
-        <enum name="WindowStates">
-            <enumerator name="WindowNoState" value="0"/>
-            <enumerator name="WindowMinimized" value="1"/>
-            <enumerator name="WindowMaximized" value="2"/>
-            <enumerator name="WindowFullScreen" value="4"/>
-            <enumerator name="WindowActive" value="8"/>
-        </enum>
-        <enum name="WidgetAttribute">
-            <enumerator name="WA_Disabled" value="0"/>
-            <enumerator name="WA_UnderMouse" value="1"/>
-            <enumerator name="WA_MouseTracking" value="2"/>
-            <enumerator name="WA_ContentsPropagated" value="3"/>
-            <enumerator name="WA_OpaquePaintEvent" value="4"/>
-            <enumerator name="WA_NoBackground" value="4"/>
-            <enumerator name="WA_StaticContents" value="5"/>
-            <enumerator name="WA_LaidOut" value="7"/>
-            <enumerator name="WA_PaintOnScreen" value="8"/>
-            <enumerator name="WA_NoSystemBackground" value="9"/>
-            <enumerator name="WA_UpdatesDisabled" value="10"/>
-            <enumerator name="WA_Mapped" value="11"/>
-            <enumerator name="WA_MacNoClickThrough" value="12"/>
-            <enumerator name="WA_PaintOutsidePaintEvent" value="13"/>
-            <enumerator name="WA_InputMethodEnabled" value="14"/>
-            <enumerator name="WA_WState_Visible" value="15"/>
-            <enumerator name="WA_WState_Hidden" value="16"/>
-            <enumerator name="WA_ForceDisabled" value="32"/>
-            <enumerator name="WA_KeyCompression" value="33"/>
-            <enumerator name="WA_PendingMoveEvent" value="34"/>
-            <enumerator name="WA_PendingResizeEvent" value="35"/>
-            <enumerator name="WA_SetPalette" value="36"/>
-            <enumerator name="WA_SetFont" value="37"/>
-            <enumerator name="WA_SetCursor" value="38"/>
-            <enumerator name="WA_NoChildEventsFromChildren" value="39"/>
-            <enumerator name="WA_WindowModified" value="41"/>
-            <enumerator name="WA_Resized" value="42"/>
-            <enumerator name="WA_Moved" value="43"/>
-            <enumerator name="WA_PendingUpdate" value="44"/>
-            <enumerator name="WA_InvalidSize" value="45"/>
-            <enumerator name="WA_MacBrushedMetal" value="46"/>
-            <enumerator name="WA_MacMetalStyle" value="46"/>
-            <enumerator name="WA_CustomWhatsThis" value="47"/>
-            <enumerator name="WA_LayoutOnEntireRect" value="48"/>
-            <enumerator name="WA_OutsideWSRange" value="49"/>
-            <enumerator name="WA_GrabbedShortcut" value="50"/>
-            <enumerator name="WA_TransparentForMouseEvents" value="51"/>
-            <enumerator name="WA_PaintUnclipped" value="52"/>
-            <enumerator name="WA_SetWindowIcon" value="53"/>
-            <enumerator name="WA_NoMouseReplay" value="54"/>
-            <enumerator name="WA_DeleteOnClose" value="55"/>
-            <enumerator name="WA_RightToLeft" value="56"/>
-            <enumerator name="WA_SetLayoutDirection" value="57"/>
-            <enumerator name="WA_NoChildEventsForParent" value="58"/>
-            <enumerator name="WA_ForceUpdatesDisabled" value="59"/>
-            <enumerator name="WA_WState_Created" value="60"/>
-            <enumerator name="WA_WState_CompressKeys" value="61"/>
-            <enumerator name="WA_WState_InPaintEvent" value="62"/>
-            <enumerator name="WA_WState_Reparented" value="63"/>
-            <enumerator name="WA_WState_ConfigPending" value="64"/>
-            <enumerator name="WA_WState_Polished" value="66"/>
-            <enumerator name="WA_WState_DND" value="67"/>
-            <enumerator name="WA_WState_OwnSizePolicy" value="68"/>
-            <enumerator name="WA_WState_ExplicitShowHide" value="69"/>
-            <enumerator name="WA_ShowModal" value="70"/>
-            <enumerator name="WA_MouseNoMask" value="71"/>
-            <enumerator name="WA_GroupLeader" value="72"/>
-            <enumerator name="WA_NoMousePropagation" value="73"/>
-            <enumerator name="WA_Hover" value="74"/>
-            <enumerator name="WA_InputMethodTransparent" value="75"/>
-            <enumerator name="WA_QuitOnClose" value="76"/>
-            <enumerator name="WA_KeyboardFocusChange" value="77"/>
-            <enumerator name="WA_AcceptDrops" value="78"/>
-            <enumerator name="WA_DropSiteRegistered" value="79"/>
-            <enumerator name="WA_ForceAcceptDrops" value="79"/>
-            <enumerator name="WA_WindowPropagation" value="80"/>
-            <enumerator name="WA_NoX11EventCompression" value="81"/>
-            <enumerator name="WA_TintedBackground" value="82"/>
-            <enumerator name="WA_X11OpenGLOverlay" value="83"/>
-            <enumerator name="WA_AlwaysShowToolTips" value="84"/>
-            <enumerator name="WA_MacOpaqueSizeGrip" value="85"/>
-            <enumerator name="WA_SetStyle" value="86"/>
-            <enumerator name="WA_SetLocale" value="87"/>
-            <enumerator name="WA_MacShowFocusRect" value="88"/>
-            <enumerator name="WA_MacNormalSize" value="89"/>
-            <enumerator name="WA_MacSmallSize" value="90"/>
-            <enumerator name="WA_MacMiniSize" value="91"/>
-            <enumerator name="WA_LayoutUsesWidgetRect" value="92"/>
-            <enumerator name="WA_StyledBackground" value="93"/>
-            <enumerator name="WA_MSWindowsUseDirect3D" value="94"/>
-            <enumerator name="WA_CanHostQMdiSubWindowTitleBar" value="95"/>
-            <enumerator name="WA_MacAlwaysShowToolWindow" value="96"/>
-            <enumerator name="WA_StyleSheet" value="97"/>
-            <enumerator name="WA_ShowWithoutActivating" value="98"/>
-            <enumerator name="WA_X11BypassTransientForHint" value="99"/>
-            <enumerator name="WA_NativeWindow" value="100"/>
-            <enumerator name="WA_DontCreateNativeAncestors" value="101"/>
-            <enumerator name="WA_MacVariableSize" value="102"/>
-            <enumerator name="WA_DontShowOnScreen" value="103"/>
-            <enumerator name="WA_X11NetWmWindowTypeDesktop" value="104"/>
-            <enumerator name="WA_X11NetWmWindowTypeDock" value="105"/>
-            <enumerator name="WA_X11NetWmWindowTypeToolBar" value="106"/>
-            <enumerator name="WA_X11NetWmWindowTypeMenu" value="107"/>
-            <enumerator name="WA_X11NetWmWindowTypeUtility" value="108"/>
-            <enumerator name="WA_X11NetWmWindowTypeSplash" value="109"/>
-            <enumerator name="WA_X11NetWmWindowTypeDialog" value="110"/>
-            <enumerator name="WA_X11NetWmWindowTypeDropDownMenu" value="111"/>
-            <enumerator name="WA_X11NetWmWindowTypePopupMenu" value="112"/>
-            <enumerator name="WA_X11NetWmWindowTypeToolTip" value="113"/>
-            <enumerator name="WA_X11NetWmWindowTypeNotification" value="114"/>
-            <enumerator name="WA_X11NetWmWindowTypeCombo" value="115"/>
-            <enumerator name="WA_X11NetWmWindowTypeDND" value="116"/>
-            <enumerator name="WA_MacFrameworkScaled" value="117"/>
-            <enumerator name="WA_SetWindowModality" value="118"/>
-            <enumerator name="WA_WState_WindowOpacitySet" value="119"/>
-            <enumerator name="WA_TranslucentBackground" value="120"/>
-            <enumerator name="WA_AcceptTouchEvents" value="121"/>
-            <enumerator name="WA_WState_AcceptedTouchBeginEvent" value="122"/>
-            <enumerator name="WA_TouchPadAcceptSingleTouchEvents" value="123"/>
-            <enumerator name="WA_MergeSoftkeys" value="124"/>
-            <enumerator name="WA_MergeSoftkeysRecursively" value="125"/>
-            <enumerator name="WA_Maemo5StackedWindow" value="127"/>
-            <enumerator name="WA_X11DoNotAcceptFocus" value="132"/>
-            <enumerator name="WA_AttributeCount" value="133"/>
-        </enum>
-        <enum name="ApplicationAttribute">
-            <enumerator name="AA_ImmediateWidgetCreation" value="0"/>
-            <enumerator name="AA_MSWindowsUseDirect3DByDefault" value="1"/>
-            <enumerator name="AA_DontShowIconsInMenus" value="2"/>
-            <enumerator name="AA_NativeWindows" value="3"/>
-            <enumerator name="AA_DontCreateNativeWidgetSiblings" value="4"/>
-            <enumerator name="AA_MacPluginApplication" value="5"/>
-            <enumerator name="AA_DontUseNativeMenuBar" value="6"/>
-            <enumerator name="AA_MacDontSwapCtrlAndMeta" value="7"/>
-            <enumerator name="AA_S60DontConstructApplicationPanes" value="8"/>
-            <enumerator name="AA_AttributeCount" value="9"/>
-        </enum>
-        <enum name="ImageConversionFlags">
-            <enumerator name="ColorMode_Mask" value="3"/>
-            <enumerator name="AutoColor" value="0"/>
-            <enumerator name="ColorOnly" value="3"/>
-            <enumerator name="MonoOnly" value="2"/>
-            <enumerator name="AlphaDither_Mask" value="12"/>
-            <enumerator name="ThresholdAlphaDither" value="0"/>
-            <enumerator name="OrderedAlphaDither" value="4"/>
-            <enumerator name="DiffuseAlphaDither" value="8"/>
-            <enumerator name="NoAlpha" value="12"/>
-            <enumerator name="Dither_Mask" value="48"/>
-            <enumerator name="DiffuseDither" value="0"/>
-            <enumerator name="OrderedDither" value="16"/>
-            <enumerator name="ThresholdDither" value="32"/>
-            <enumerator name="DitherMode_Mask" value="192"/>
-            <enumerator name="AutoDither" value="0"/>
-            <enumerator name="PreferDither" value="64"/>
-            <enumerator name="AvoidDither" value="128"/>
-            <enumerator name="NoOpaqueDetection" value="256"/>
-        </enum>
-        <enum name="BGMode">
-            <enumerator name="TransparentMode" value="0"/>
-            <enumerator name="OpaqueMode" value="1"/>
-        </enum>
-        <enum name="Key">
-            <enumerator name="Key_Escape" value="16777216"/>
-            <enumerator name="Key_Tab" value="16777217"/>
-            <enumerator name="Key_Backtab" value="16777218"/>
-            <enumerator name="Key_Backspace" value="16777219"/>
-            <enumerator name="Key_Return" value="16777220"/>
-            <enumerator name="Key_Enter" value="16777221"/>
-            <enumerator name="Key_Insert" value="16777222"/>
-            <enumerator name="Key_Delete" value="16777223"/>
-            <enumerator name="Key_Pause" value="16777224"/>
-            <enumerator name="Key_Print" value="16777225"/>
-            <enumerator name="Key_SysReq" value="16777226"/>
-            <enumerator name="Key_Clear" value="16777227"/>
-            <enumerator name="Key_Home" value="16777232"/>
-            <enumerator name="Key_End" value="16777233"/>
-            <enumerator name="Key_Left" value="16777234"/>
-            <enumerator name="Key_Up" value="16777235"/>
-            <enumerator name="Key_Right" value="16777236"/>
-            <enumerator name="Key_Down" value="16777237"/>
-            <enumerator name="Key_PageUp" value="16777238"/>
-            <enumerator name="Key_PageDown" value="16777239"/>
-            <enumerator name="Key_Shift" value="16777248"/>
-            <enumerator name="Key_Control" value="16777249"/>
-            <enumerator name="Key_Meta" value="16777250"/>
-            <enumerator name="Key_Alt" value="16777251"/>
-            <enumerator name="Key_CapsLock" value="16777252"/>
-            <enumerator name="Key_NumLock" value="16777253"/>
-            <enumerator name="Key_ScrollLock" value="16777254"/>
-            <enumerator name="Key_F1" value="16777264"/>
-            <enumerator name="Key_F2" value="16777265"/>
-            <enumerator name="Key_F3" value="16777266"/>
-            <enumerator name="Key_F4" value="16777267"/>
-            <enumerator name="Key_F5" value="16777268"/>
-            <enumerator name="Key_F6" value="16777269"/>
-            <enumerator name="Key_F7" value="16777270"/>
-            <enumerator name="Key_F8" value="16777271"/>
-            <enumerator name="Key_F9" value="16777272"/>
-            <enumerator name="Key_F10" value="16777273"/>
-            <enumerator name="Key_F11" value="16777274"/>
-            <enumerator name="Key_F12" value="16777275"/>
-            <enumerator name="Key_F13" value="16777276"/>
-            <enumerator name="Key_F14" value="16777277"/>
-            <enumerator name="Key_F15" value="16777278"/>
-            <enumerator name="Key_F16" value="16777279"/>
-            <enumerator name="Key_F17" value="16777280"/>
-            <enumerator name="Key_F18" value="16777281"/>
-            <enumerator name="Key_F19" value="16777282"/>
-            <enumerator name="Key_F20" value="16777283"/>
-            <enumerator name="Key_F21" value="16777284"/>
-            <enumerator name="Key_F22" value="16777285"/>
-            <enumerator name="Key_F23" value="16777286"/>
-            <enumerator name="Key_F24" value="16777287"/>
-            <enumerator name="Key_F25" value="16777288"/>
-            <enumerator name="Key_F26" value="16777289"/>
-            <enumerator name="Key_F27" value="16777290"/>
-            <enumerator name="Key_F28" value="16777291"/>
-            <enumerator name="Key_F29" value="16777292"/>
-            <enumerator name="Key_F30" value="16777293"/>
-            <enumerator name="Key_F31" value="16777294"/>
-            <enumerator name="Key_F32" value="16777295"/>
-            <enumerator name="Key_F33" value="16777296"/>
-            <enumerator name="Key_F34" value="16777297"/>
-            <enumerator name="Key_F35" value="16777298"/>
-            <enumerator name="Key_Super_L" value="16777299"/>
-            <enumerator name="Key_Super_R" value="16777300"/>
-            <enumerator name="Key_Menu" value="16777301"/>
-            <enumerator name="Key_Hyper_L" value="16777302"/>
-            <enumerator name="Key_Hyper_R" value="16777303"/>
-            <enumerator name="Key_Help" value="16777304"/>
-            <enumerator name="Key_Direction_L" value="16777305"/>
-            <enumerator name="Key_Direction_R" value="16777312"/>
-            <enumerator name="Key_Space" value="32"/>
-            <enumerator name="Key_Any" value="32"/>
-            <enumerator name="Key_Exclam" value="33"/>
-            <enumerator name="Key_QuoteDbl" value="34"/>
-            <enumerator name="Key_NumberSign" value="35"/>
-            <enumerator name="Key_Dollar" value="36"/>
-            <enumerator name="Key_Percent" value="37"/>
-            <enumerator name="Key_Ampersand" value="38"/>
-            <enumerator name="Key_Apostrophe" value="39"/>
-            <enumerator name="Key_ParenLeft" value="40"/>
-            <enumerator name="Key_ParenRight" value="41"/>
-            <enumerator name="Key_Asterisk" value="42"/>
-            <enumerator name="Key_Plus" value="43"/>
-            <enumerator name="Key_Comma" value="44"/>
-            <enumerator name="Key_Minus" value="45"/>
-            <enumerator name="Key_Period" value="46"/>
-            <enumerator name="Key_Slash" value="47"/>
-            <enumerator name="Key_0" value="48"/>
-            <enumerator name="Key_1" value="49"/>
-            <enumerator name="Key_2" value="50"/>
-            <enumerator name="Key_3" value="51"/>
-            <enumerator name="Key_4" value="52"/>
-            <enumerator name="Key_5" value="53"/>
-            <enumerator name="Key_6" value="54"/>
-            <enumerator name="Key_7" value="55"/>
-            <enumerator name="Key_8" value="56"/>
-            <enumerator name="Key_9" value="57"/>
-            <enumerator name="Key_Colon" value="58"/>
-            <enumerator name="Key_Semicolon" value="59"/>
-            <enumerator name="Key_Less" value="60"/>
-            <enumerator name="Key_Equal" value="61"/>
-            <enumerator name="Key_Greater" value="62"/>
-            <enumerator name="Key_Question" value="63"/>
-            <enumerator name="Key_At" value="64"/>
-            <enumerator name="Key_A" value="65"/>
-            <enumerator name="Key_B" value="66"/>
-            <enumerator name="Key_C" value="67"/>
-            <enumerator name="Key_D" value="68"/>
-            <enumerator name="Key_E" value="69"/>
-            <enumerator name="Key_F" value="70"/>
-            <enumerator name="Key_G" value="71"/>
-            <enumerator name="Key_H" value="72"/>
-            <enumerator name="Key_I" value="73"/>
-            <enumerator name="Key_J" value="74"/>
-            <enumerator name="Key_K" value="75"/>
-            <enumerator name="Key_L" value="76"/>
-            <enumerator name="Key_M" value="77"/>
-            <enumerator name="Key_N" value="78"/>
-            <enumerator name="Key_O" value="79"/>
-            <enumerator name="Key_P" value="80"/>
-            <enumerator name="Key_Q" value="81"/>
-            <enumerator name="Key_R" value="82"/>
-            <enumerator name="Key_S" value="83"/>
-            <enumerator name="Key_T" value="84"/>
-            <enumerator name="Key_U" value="85"/>
-            <enumerator name="Key_V" value="86"/>
-            <enumerator name="Key_W" value="87"/>
-            <enumerator name="Key_X" value="88"/>
-            <enumerator name="Key_Y" value="89"/>
-            <enumerator name="Key_Z" value="90"/>
-            <enumerator name="Key_BracketLeft" value="91"/>
-            <enumerator name="Key_Backslash" value="92"/>
-            <enumerator name="Key_BracketRight" value="93"/>
-            <enumerator name="Key_AsciiCircum" value="94"/>
-            <enumerator name="Key_Underscore" value="95"/>
-            <enumerator name="Key_QuoteLeft" value="96"/>
-            <enumerator name="Key_BraceLeft" value="123"/>
-            <enumerator name="Key_Bar" value="124"/>
-            <enumerator name="Key_BraceRight" value="125"/>
-            <enumerator name="Key_AsciiTilde" value="126"/>
-            <enumerator name="Key_nobreakspace" value="160"/>
-            <enumerator name="Key_exclamdown" value="161"/>
-            <enumerator name="Key_cent" value="162"/>
-            <enumerator name="Key_sterling" value="163"/>
-            <enumerator name="Key_currency" value="164"/>
-            <enumerator name="Key_yen" value="165"/>
-            <enumerator name="Key_brokenbar" value="166"/>
-            <enumerator name="Key_section" value="167"/>
-            <enumerator name="Key_diaeresis" value="168"/>
-            <enumerator name="Key_copyright" value="169"/>
-            <enumerator name="Key_ordfeminine" value="170"/>
-            <enumerator name="Key_guillemotleft" value="171"/>
-            <enumerator name="Key_notsign" value="172"/>
-            <enumerator name="Key_hyphen" value="173"/>
-            <enumerator name="Key_registered" value="174"/>
-            <enumerator name="Key_macron" value="175"/>
-            <enumerator name="Key_degree" value="176"/>
-            <enumerator name="Key_plusminus" value="177"/>
-            <enumerator name="Key_twosuperior" value="178"/>
-            <enumerator name="Key_threesuperior" value="179"/>
-            <enumerator name="Key_acute" value="180"/>
-            <enumerator name="Key_mu" value="181"/>
-            <enumerator name="Key_paragraph" value="182"/>
-            <enumerator name="Key_periodcentered" value="183"/>
-            <enumerator name="Key_cedilla" value="184"/>
-            <enumerator name="Key_onesuperior" value="185"/>
-            <enumerator name="Key_masculine" value="186"/>
-            <enumerator name="Key_guillemotright" value="187"/>
-            <enumerator name="Key_onequarter" value="188"/>
-            <enumerator name="Key_onehalf" value="189"/>
-            <enumerator name="Key_threequarters" value="190"/>
-            <enumerator name="Key_questiondown" value="191"/>
-            <enumerator name="Key_Agrave" value="192"/>
-            <enumerator name="Key_Aacute" value="193"/>
-            <enumerator name="Key_Acircumflex" value="194"/>
-            <enumerator name="Key_Atilde" value="195"/>
-            <enumerator name="Key_Adiaeresis" value="196"/>
-            <enumerator name="Key_Aring" value="197"/>
-            <enumerator name="Key_AE" value="198"/>
-            <enumerator name="Key_Ccedilla" value="199"/>
-            <enumerator name="Key_Egrave" value="200"/>
-            <enumerator name="Key_Eacute" value="201"/>
-            <enumerator name="Key_Ecircumflex" value="202"/>
-            <enumerator name="Key_Ediaeresis" value="203"/>
-            <enumerator name="Key_Igrave" value="204"/>
-            <enumerator name="Key_Iacute" value="205"/>
-            <enumerator name="Key_Icircumflex" value="206"/>
-            <enumerator name="Key_Idiaeresis" value="207"/>
-            <enumerator name="Key_ETH" value="208"/>
-            <enumerator name="Key_Ntilde" value="209"/>
-            <enumerator name="Key_Ograve" value="210"/>
-            <enumerator name="Key_Oacute" value="211"/>
-            <enumerator name="Key_Ocircumflex" value="212"/>
-            <enumerator name="Key_Otilde" value="213"/>
-            <enumerator name="Key_Odiaeresis" value="214"/>
-            <enumerator name="Key_multiply" value="215"/>
-            <enumerator name="Key_Ooblique" value="216"/>
-            <enumerator name="Key_Ugrave" value="217"/>
-            <enumerator name="Key_Uacute" value="218"/>
-            <enumerator name="Key_Ucircumflex" value="219"/>
-            <enumerator name="Key_Udiaeresis" value="220"/>
-            <enumerator name="Key_Yacute" value="221"/>
-            <enumerator name="Key_THORN" value="222"/>
-            <enumerator name="Key_ssharp" value="223"/>
-            <enumerator name="Key_division" value="247"/>
-            <enumerator name="Key_ydiaeresis" value="255"/>
-            <enumerator name="Key_AltGr" value="16781571"/>
-            <enumerator name="Key_Multi_key" value="16781600"/>
-            <enumerator name="Key_Codeinput" value="16781623"/>
-            <enumerator name="Key_SingleCandidate" value="16781628"/>
-            <enumerator name="Key_MultipleCandidate" value="16781629"/>
-            <enumerator name="Key_PreviousCandidate" value="16781630"/>
-            <enumerator name="Key_Mode_switch" value="16781694"/>
-            <enumerator name="Key_Kanji" value="16781601"/>
-            <enumerator name="Key_Muhenkan" value="16781602"/>
-            <enumerator name="Key_Henkan" value="16781603"/>
-            <enumerator name="Key_Romaji" value="16781604"/>
-            <enumerator name="Key_Hiragana" value="16781605"/>
-            <enumerator name="Key_Katakana" value="16781606"/>
-            <enumerator name="Key_Hiragana_Katakana" value="16781607"/>
-            <enumerator name="Key_Zenkaku" value="16781608"/>
-            <enumerator name="Key_Hankaku" value="16781609"/>
-            <enumerator name="Key_Zenkaku_Hankaku" value="16781610"/>
-            <enumerator name="Key_Touroku" value="16781611"/>
-            <enumerator name="Key_Massyo" value="16781612"/>
-            <enumerator name="Key_Kana_Lock" value="16781613"/>
-            <enumerator name="Key_Kana_Shift" value="16781614"/>
-            <enumerator name="Key_Eisu_Shift" value="16781615"/>
-            <enumerator name="Key_Eisu_toggle" value="16781616"/>
-            <enumerator name="Key_Hangul" value="16781617"/>
-            <enumerator name="Key_Hangul_Start" value="16781618"/>
-            <enumerator name="Key_Hangul_End" value="16781619"/>
-            <enumerator name="Key_Hangul_Hanja" value="16781620"/>
-            <enumerator name="Key_Hangul_Jamo" value="16781621"/>
-            <enumerator name="Key_Hangul_Romaja" value="16781622"/>
-            <enumerator name="Key_Hangul_Jeonja" value="16781624"/>
-            <enumerator name="Key_Hangul_Banja" value="16781625"/>
-            <enumerator name="Key_Hangul_PreHanja" value="16781626"/>
-            <enumerator name="Key_Hangul_PostHanja" value="16781627"/>
-            <enumerator name="Key_Hangul_Special" value="16781631"/>
-            <enumerator name="Key_Dead_Grave" value="16781904"/>
-            <enumerator name="Key_Dead_Acute" value="16781905"/>
-            <enumerator name="Key_Dead_Circumflex" value="16781906"/>
-            <enumerator name="Key_Dead_Tilde" value="16781907"/>
-            <enumerator name="Key_Dead_Macron" value="16781908"/>
-            <enumerator name="Key_Dead_Breve" value="16781909"/>
-            <enumerator name="Key_Dead_Abovedot" value="16781910"/>
-            <enumerator name="Key_Dead_Diaeresis" value="16781911"/>
-            <enumerator name="Key_Dead_Abovering" value="16781912"/>
-            <enumerator name="Key_Dead_Doubleacute" value="16781913"/>
-            <enumerator name="Key_Dead_Caron" value="16781914"/>
-            <enumerator name="Key_Dead_Cedilla" value="16781915"/>
-            <enumerator name="Key_Dead_Ogonek" value="16781916"/>
-            <enumerator name="Key_Dead_Iota" value="16781917"/>
-            <enumerator name="Key_Dead_Voiced_Sound" value="16781918"/>
-            <enumerator name="Key_Dead_Semivoiced_Sound" value="16781919"/>
-            <enumerator name="Key_Dead_Belowdot" value="16781920"/>
-            <enumerator name="Key_Dead_Hook" value="16781921"/>
-            <enumerator name="Key_Dead_Horn" value="16781922"/>
-            <enumerator name="Key_Back" value="16777313"/>
-            <enumerator name="Key_Forward" value="16777314"/>
-            <enumerator name="Key_Stop" value="16777315"/>
-            <enumerator name="Key_Refresh" value="16777316"/>
-            <enumerator name="Key_VolumeDown" value="16777328"/>
-            <enumerator name="Key_VolumeMute" value="16777329"/>
-            <enumerator name="Key_VolumeUp" value="16777330"/>
-            <enumerator name="Key_BassBoost" value="16777331"/>
-            <enumerator name="Key_BassUp" value="16777332"/>
-            <enumerator name="Key_BassDown" value="16777333"/>
-            <enumerator name="Key_TrebleUp" value="16777334"/>
-            <enumerator name="Key_TrebleDown" value="16777335"/>
-            <enumerator name="Key_MediaPlay" value="16777344"/>
-            <enumerator name="Key_MediaStop" value="16777345"/>
-            <enumerator name="Key_MediaPrevious" value="16777346"/>
-            <enumerator name="Key_MediaNext" value="16777347"/>
-            <enumerator name="Key_MediaRecord" value="16777348"/>
-            <enumerator name="Key_MediaPause" value="16777349"/>
-            <enumerator name="Key_MediaTogglePlayPause" value="16777350"/>
-            <enumerator name="Key_HomePage" value="16777360"/>
-            <enumerator name="Key_Favorites" value="16777361"/>
-            <enumerator name="Key_Search" value="16777362"/>
-            <enumerator name="Key_Standby" value="16777363"/>
-            <enumerator name="Key_OpenUrl" value="16777364"/>
-            <enumerator name="Key_LaunchMail" value="16777376"/>
-            <enumerator name="Key_LaunchMedia" value="16777377"/>
-            <enumerator name="Key_Launch0" value="16777378"/>
-            <enumerator name="Key_Launch1" value="16777379"/>
-            <enumerator name="Key_Launch2" value="16777380"/>
-            <enumerator name="Key_Launch3" value="16777381"/>
-            <enumerator name="Key_Launch4" value="16777382"/>
-            <enumerator name="Key_Launch5" value="16777383"/>
-            <enumerator name="Key_Launch6" value="16777384"/>
-            <enumerator name="Key_Launch7" value="16777385"/>
-            <enumerator name="Key_Launch8" value="16777386"/>
-            <enumerator name="Key_Launch9" value="16777387"/>
-            <enumerator name="Key_LaunchA" value="16777388"/>
-            <enumerator name="Key_LaunchB" value="16777389"/>
-            <enumerator name="Key_LaunchC" value="16777390"/>
-            <enumerator name="Key_LaunchD" value="16777391"/>
-            <enumerator name="Key_LaunchE" value="16777392"/>
-            <enumerator name="Key_LaunchF" value="16777393"/>
-            <enumerator name="Key_MonBrightnessUp" value="16777394"/>
-            <enumerator name="Key_MonBrightnessDown" value="16777395"/>
-            <enumerator name="Key_KeyboardLightOnOff" value="16777396"/>
-            <enumerator name="Key_KeyboardBrightnessUp" value="16777397"/>
-            <enumerator name="Key_KeyboardBrightnessDown" value="16777398"/>
-            <enumerator name="Key_PowerOff" value="16777399"/>
-            <enumerator name="Key_WakeUp" value="16777400"/>
-            <enumerator name="Key_Eject" value="16777401"/>
-            <enumerator name="Key_ScreenSaver" value="16777402"/>
-            <enumerator name="Key_WWW" value="16777403"/>
-            <enumerator name="Key_Memo" value="16777404"/>
-            <enumerator name="Key_LightBulb" value="16777405"/>
-            <enumerator name="Key_Shop" value="16777406"/>
-            <enumerator name="Key_History" value="16777407"/>
-            <enumerator name="Key_AddFavorite" value="16777408"/>
-            <enumerator name="Key_HotLinks" value="16777409"/>
-            <enumerator name="Key_BrightnessAdjust" value="16777410"/>
-            <enumerator name="Key_Finance" value="16777411"/>
-            <enumerator name="Key_Community" value="16777412"/>
-            <enumerator name="Key_AudioRewind" value="16777413"/>
-            <enumerator name="Key_BackForward" value="16777414"/>
-            <enumerator name="Key_ApplicationLeft" value="16777415"/>
-            <enumerator name="Key_ApplicationRight" value="16777416"/>
-            <enumerator name="Key_Book" value="16777417"/>
-            <enumerator name="Key_CD" value="16777418"/>
-            <enumerator name="Key_Calculator" value="16777419"/>
-            <enumerator name="Key_ToDoList" value="16777420"/>
-            <enumerator name="Key_ClearGrab" value="16777421"/>
-            <enumerator name="Key_Close" value="16777422"/>
-            <enumerator name="Key_Copy" value="16777423"/>
-            <enumerator name="Key_Cut" value="16777424"/>
-            <enumerator name="Key_Display" value="16777425"/>
-            <enumerator name="Key_DOS" value="16777426"/>
-            <enumerator name="Key_Documents" value="16777427"/>
-            <enumerator name="Key_Excel" value="16777428"/>
-            <enumerator name="Key_Explorer" value="16777429"/>
-            <enumerator name="Key_Game" value="16777430"/>
-            <enumerator name="Key_Go" value="16777431"/>
-            <enumerator name="Key_iTouch" value="16777432"/>
-            <enumerator name="Key_LogOff" value="16777433"/>
-            <enumerator name="Key_Market" value="16777434"/>
-            <enumerator name="Key_Meeting" value="16777435"/>
-            <enumerator name="Key_MenuKB" value="16777436"/>
-            <enumerator name="Key_MenuPB" value="16777437"/>
-            <enumerator name="Key_MySites" value="16777438"/>
-            <enumerator name="Key_News" value="16777439"/>
-            <enumerator name="Key_OfficeHome" value="16777440"/>
-            <enumerator name="Key_Option" value="16777441"/>
-            <enumerator name="Key_Paste" value="16777442"/>
-            <enumerator name="Key_Phone" value="16777443"/>
-            <enumerator name="Key_Calendar" value="16777444"/>
-            <enumerator name="Key_Reply" value="16777445"/>
-            <enumerator name="Key_Reload" value="16777446"/>
-            <enumerator name="Key_RotateWindows" value="16777447"/>
-            <enumerator name="Key_RotationPB" value="16777448"/>
-            <enumerator name="Key_RotationKB" value="16777449"/>
-            <enumerator name="Key_Save" value="16777450"/>
-            <enumerator name="Key_Send" value="16777451"/>
-            <enumerator name="Key_Spell" value="16777452"/>
-            <enumerator name="Key_SplitScreen" value="16777453"/>
-            <enumerator name="Key_Support" value="16777454"/>
-            <enumerator name="Key_TaskPane" value="16777455"/>
-            <enumerator name="Key_Terminal" value="16777456"/>
-            <enumerator name="Key_Tools" value="16777457"/>
-            <enumerator name="Key_Travel" value="16777458"/>
-            <enumerator name="Key_Video" value="16777459"/>
-            <enumerator name="Key_Word" value="16777460"/>
-            <enumerator name="Key_Xfer" value="16777461"/>
-            <enumerator name="Key_ZoomIn" value="16777462"/>
-            <enumerator name="Key_ZoomOut" value="16777463"/>
-            <enumerator name="Key_Away" value="16777464"/>
-            <enumerator name="Key_Messenger" value="16777465"/>
-            <enumerator name="Key_WebCam" value="16777466"/>
-            <enumerator name="Key_MailForward" value="16777467"/>
-            <enumerator name="Key_Pictures" value="16777468"/>
-            <enumerator name="Key_Music" value="16777469"/>
-            <enumerator name="Key_Battery" value="16777470"/>
-            <enumerator name="Key_Bluetooth" value="16777471"/>
-            <enumerator name="Key_WLAN" value="16777472"/>
-            <enumerator name="Key_UWB" value="16777473"/>
-            <enumerator name="Key_AudioForward" value="16777474"/>
-            <enumerator name="Key_AudioRepeat" value="16777475"/>
-            <enumerator name="Key_AudioRandomPlay" value="16777476"/>
-            <enumerator name="Key_Subtitle" value="16777477"/>
-            <enumerator name="Key_AudioCycleTrack" value="16777478"/>
-            <enumerator name="Key_Time" value="16777479"/>
-            <enumerator name="Key_Hibernate" value="16777480"/>
-            <enumerator name="Key_View" value="16777481"/>
-            <enumerator name="Key_TopMenu" value="16777482"/>
-            <enumerator name="Key_PowerDown" value="16777483"/>
-            <enumerator name="Key_Suspend" value="16777484"/>
-            <enumerator name="Key_ContrastAdjust" value="16777485"/>
-            <enumerator name="Key_LaunchG" value="16777486"/>
-            <enumerator name="Key_LaunchH" value="16777487"/>
-            <enumerator name="Key_MediaLast" value="16842751"/>
-            <enumerator name="Key_Select" value="16842752"/>
-            <enumerator name="Key_Yes" value="16842753"/>
-            <enumerator name="Key_No" value="16842754"/>
-            <enumerator name="Key_Cancel" value="16908289"/>
-            <enumerator name="Key_Printer" value="16908290"/>
-            <enumerator name="Key_Execute" value="16908291"/>
-            <enumerator name="Key_Sleep" value="16908292"/>
-            <enumerator name="Key_Play" value="16908293"/>
-            <enumerator name="Key_Zoom" value="16908294"/>
-            <enumerator name="Key_Context1" value="17825792"/>
-            <enumerator name="Key_Context2" value="17825793"/>
-            <enumerator name="Key_Context3" value="17825794"/>
-            <enumerator name="Key_Context4" value="17825795"/>
-            <enumerator name="Key_Call" value="17825796"/>
-            <enumerator name="Key_Hangup" value="17825797"/>
-            <enumerator name="Key_Flip" value="17825798"/>
-            <enumerator name="Key_ToggleCallHangup" value="17825799"/>
-            <enumerator name="Key_VoiceDial" value="17825800"/>
-            <enumerator name="Key_LastNumberRedial" value="17825801"/>
-            <enumerator name="Key_Camera" value="17825824"/>
-            <enumerator name="Key_CameraFocus" value="17825825"/>
-            <enumerator name="Key_unknown" value="33554431"/>
-        </enum>
-        <enum name="ArrowType">
-            <enumerator name="NoArrow" value="0"/>
-            <enumerator name="UpArrow" value="1"/>
-            <enumerator name="DownArrow" value="2"/>
-            <enumerator name="LeftArrow" value="3"/>
-            <enumerator name="RightArrow" value="4"/>
-        </enum>
-        <enum name="PenStyle">
-            <enumerator name="NoPen" value="0"/>
-            <enumerator name="SolidLine" value="1"/>
-            <enumerator name="DashLine" value="2"/>
-            <enumerator name="DotLine" value="3"/>
-            <enumerator name="DashDotLine" value="4"/>
-            <enumerator name="DashDotDotLine" value="5"/>
-            <enumerator name="CustomDashLine" value="6"/>
-        </enum>
-        <enum name="PenCapStyle">
-            <enumerator name="FlatCap" value="0"/>
-            <enumerator name="SquareCap" value="16"/>
-            <enumerator name="RoundCap" value="32"/>
-            <enumerator name="MPenCapStyle" value="48"/>
-        </enum>
-        <enum name="PenJoinStyle">
-            <enumerator name="MiterJoin" value="0"/>
-            <enumerator name="BevelJoin" value="64"/>
-            <enumerator name="RoundJoin" value="128"/>
-            <enumerator name="SvgMiterJoin" value="256"/>
-            <enumerator name="MPenJoinStyle" value="448"/>
-        </enum>
-        <enum name="BrushStyle">
-            <enumerator name="NoBrush" value="0"/>
-            <enumerator name="SolidPattern" value="1"/>
-            <enumerator name="Dense1Pattern" value="2"/>
-            <enumerator name="Dense2Pattern" value="3"/>
-            <enumerator name="Dense3Pattern" value="4"/>
-            <enumerator name="Dense4Pattern" value="5"/>
-            <enumerator name="Dense5Pattern" value="6"/>
-            <enumerator name="Dense6Pattern" value="7"/>
-            <enumerator name="Dense7Pattern" value="8"/>
-            <enumerator name="HorPattern" value="9"/>
-            <enumerator name="VerPattern" value="10"/>
-            <enumerator name="CrossPattern" value="11"/>
-            <enumerator name="BDiagPattern" value="12"/>
-            <enumerator name="FDiagPattern" value="13"/>
-            <enumerator name="DiagCrossPattern" value="14"/>
-            <enumerator name="LinearGradientPattern" value="15"/>
-            <enumerator name="RadialGradientPattern" value="16"/>
-            <enumerator name="ConicalGradientPattern" value="17"/>
-            <enumerator name="TexturePattern" value="24"/>
-        </enum>
-        <enum name="SizeMode">
-            <enumerator name="AbsoluteSize" value="0"/>
-            <enumerator name="RelativeSize" value="1"/>
-        </enum>
-        <enum name="CursorShape">
-            <enumerator name="ArrowCursor" value="0"/>
-            <enumerator name="UpArrowCursor" value="1"/>
-            <enumerator name="CrossCursor" value="2"/>
-            <enumerator name="WaitCursor" value="3"/>
-            <enumerator name="IBeamCursor" value="4"/>
-            <enumerator name="SizeVerCursor" value="5"/>
-            <enumerator name="SizeHorCursor" value="6"/>
-            <enumerator name="SizeBDiagCursor" value="7"/>
-            <enumerator name="SizeFDiagCursor" value="8"/>
-            <enumerator name="SizeAllCursor" value="9"/>
-            <enumerator name="BlankCursor" value="10"/>
-            <enumerator name="SplitVCursor" value="11"/>
-            <enumerator name="SplitHCursor" value="12"/>
-            <enumerator name="PointingHandCursor" value="13"/>
-            <enumerator name="ForbiddenCursor" value="14"/>
-            <enumerator name="WhatsThisCursor" value="15"/>
-            <enumerator name="BusyCursor" value="16"/>
-            <enumerator name="OpenHandCursor" value="17"/>
-            <enumerator name="ClosedHandCursor" value="18"/>
-            <enumerator name="DragCopyCursor" value="19"/>
-            <enumerator name="DragMoveCursor" value="20"/>
-            <enumerator name="DragLinkCursor" value="21"/>
-            <enumerator name="LastCursor" value="21"/>
-            <enumerator name="BitmapCursor" value="24"/>
-            <enumerator name="CustomCursor" value="25"/>
-        </enum>
-        <enum name="TextFormat">
-            <enumerator name="PlainText" value="0"/>
-            <enumerator name="RichText" value="1"/>
-            <enumerator name="AutoText" value="2"/>
-            <enumerator name="LogText" value="3"/>
-        </enum>
-        <enum name="AspectRatioMode">
-            <enumerator name="IgnoreAspectRatio" value="0"/>
-            <enumerator name="KeepAspectRatio" value="1"/>
-            <enumerator name="KeepAspectRatioByExpanding" value="2"/>
-        </enum>
-        <enum name="DockWidgetArea">
-            <enumerator name="LeftDockWidgetArea" value="1"/>
-            <enumerator name="RightDockWidgetArea" value="2"/>
-            <enumerator name="TopDockWidgetArea" value="4"/>
-            <enumerator name="BottomDockWidgetArea" value="8"/>
-            <enumerator name="DockWidgetArea_Mask" value="15"/>
-            <enumerator name="AllDockWidgetAreas" value="15"/>
-            <enumerator name="NoDockWidgetArea" value="0"/>
-        </enum>
-        <enum name="DockWidgetAreas">
-            <enumerator name="LeftDockWidgetArea" value="1"/>
-            <enumerator name="RightDockWidgetArea" value="2"/>
-            <enumerator name="TopDockWidgetArea" value="4"/>
-            <enumerator name="BottomDockWidgetArea" value="8"/>
-            <enumerator name="DockWidgetArea_Mask" value="15"/>
-            <enumerator name="AllDockWidgetAreas" value="15"/>
-            <enumerator name="NoDockWidgetArea" value="0"/>
-        </enum>
-        <enum name="ToolBarArea">
-            <enumerator name="LeftToolBarArea" value="1"/>
-            <enumerator name="RightToolBarArea" value="2"/>
-            <enumerator name="TopToolBarArea" value="4"/>
-            <enumerator name="BottomToolBarArea" value="8"/>
-            <enumerator name="ToolBarArea_Mask" value="15"/>
-            <enumerator name="AllToolBarAreas" value="15"/>
-            <enumerator name="NoToolBarArea" value="0"/>
-        </enum>
-        <enum name="ToolBarAreas">
-            <enumerator name="LeftToolBarArea" value="1"/>
-            <enumerator name="RightToolBarArea" value="2"/>
-            <enumerator name="TopToolBarArea" value="4"/>
-            <enumerator name="BottomToolBarArea" value="8"/>
-            <enumerator name="ToolBarArea_Mask" value="15"/>
-            <enumerator name="AllToolBarAreas" value="15"/>
-            <enumerator name="NoToolBarArea" value="0"/>
-        </enum>
-        <enum name="DateFormat">
-            <enumerator name="TextDate" value="0"/>
-            <enumerator name="ISODate" value="1"/>
-            <enumerator name="SystemLocaleDate" value="2"/>
-            <enumerator name="LocalDate" value="2"/>
-            <enumerator name="LocaleDate" value="3"/>
-            <enumerator name="SystemLocaleShortDate" value="4"/>
-            <enumerator name="SystemLocaleLongDate" value="5"/>
-            <enumerator name="DefaultLocaleShortDate" value="6"/>
-            <enumerator name="DefaultLocaleLongDate" value="7"/>
-        </enum>
-        <enum name="TimeSpec">
-            <enumerator name="LocalTime" value="0"/>
-            <enumerator name="UTC" value="1"/>
-            <enumerator name="OffsetFromUTC" value="2"/>
-        </enum>
-        <enum name="DayOfWeek">
-            <enumerator name="Monday" value="1"/>
-            <enumerator name="Tuesday" value="2"/>
-            <enumerator name="Wednesday" value="3"/>
-            <enumerator name="Thursday" value="4"/>
-            <enumerator name="Friday" value="5"/>
-            <enumerator name="Saturday" value="6"/>
-            <enumerator name="Sunday" value="7"/>
-        </enum>
-        <enum name="ScrollBarPolicy">
-            <enumerator name="ScrollBarAsNeeded" value="0"/>
-            <enumerator name="ScrollBarAlwaysOff" value="1"/>
-            <enumerator name="ScrollBarAlwaysOn" value="2"/>
-        </enum>
-        <enum name="CaseSensitivity">
-            <enumerator name="CaseInsensitive" value="0"/>
-            <enumerator name="CaseSensitive" value="1"/>
-        </enum>
-        <enum name="Corner">
-            <enumerator name="TopLeftCorner" value="0"/>
-            <enumerator name="TopRightCorner" value="1"/>
-            <enumerator name="BottomLeftCorner" value="2"/>
-            <enumerator name="BottomRightCorner" value="3"/>
-        </enum>
-        <enum name="ConnectionType">
-            <enumerator name="AutoConnection" value="0"/>
-            <enumerator name="DirectConnection" value="1"/>
-            <enumerator name="QueuedConnection" value="2"/>
-            <enumerator name="AutoCompatConnection" value="3"/>
-            <enumerator name="BlockingQueuedConnection" value="4"/>
-            <enumerator name="UniqueConnection" value="128"/>
-        </enum>
-        <enum name="ShortcutContext">
-            <enumerator name="WidgetShortcut" value="0"/>
-            <enumerator name="WindowShortcut" value="1"/>
-            <enumerator name="ApplicationShortcut" value="2"/>
-            <enumerator name="WidgetWithChildrenShortcut" value="3"/>
-        </enum>
-        <enum name="FillRule">
-            <enumerator name="OddEvenFill" value="0"/>
-            <enumerator name="WindingFill" value="1"/>
-        </enum>
-        <enum name="MaskMode">
-            <enumerator name="MaskInColor" value="0"/>
-            <enumerator name="MaskOutColor" value="1"/>
-        </enum>
-        <enum name="ClipOperation">
-            <enumerator name="NoClip" value="0"/>
-            <enumerator name="ReplaceClip" value="1"/>
-            <enumerator name="IntersectClip" value="2"/>
-            <enumerator name="UniteClip" value="3"/>
-        </enum>
-        <enum name="ItemSelectionMode">
-            <enumerator name="ContainsItemShape" value="0"/>
-            <enumerator name="IntersectsItemShape" value="1"/>
-            <enumerator name="ContainsItemBoundingRect" value="2"/>
-            <enumerator name="IntersectsItemBoundingRect" value="3"/>
-        </enum>
-        <enum name="TransformationMode">
-            <enumerator name="FastTransformation" value="0"/>
-            <enumerator name="SmoothTransformation" value="1"/>
-        </enum>
-        <enum name="Axis">
-            <enumerator name="XAxis" value="0"/>
-            <enumerator name="YAxis" value="1"/>
-            <enumerator name="ZAxis" value="2"/>
-        </enum>
-        <enum name="ContextMenuPolicy">
-            <enumerator name="NoContextMenu" value="0"/>
-            <enumerator name="DefaultContextMenu" value="1"/>
-            <enumerator name="ActionsContextMenu" value="2"/>
-            <enumerator name="CustomContextMenu" value="3"/>
-            <enumerator name="PreventContextMenu" value="4"/>
-        </enum>
-        <enum name="InputMethodHint">
-            <enumerator name="ImhNone" value="0"/>
-            <enumerator name="ImhHiddenText" value="1"/>
-            <enumerator name="ImhNoAutoUppercase" value="2"/>
-            <enumerator name="ImhPreferNumbers" value="4"/>
-            <enumerator name="ImhPreferUppercase" value="8"/>
-            <enumerator name="ImhPreferLowercase" value="16"/>
-            <enumerator name="ImhNoPredictiveText" value="32"/>
-            <enumerator name="ImhDigitsOnly" value="65536"/>
-            <enumerator name="ImhFormattedNumbersOnly" value="131072"/>
-            <enumerator name="ImhUppercaseOnly" value="262144"/>
-            <enumerator name="ImhLowercaseOnly" value="524288"/>
-            <enumerator name="ImhDialableCharactersOnly" value="1048576"/>
-            <enumerator name="ImhEmailCharactersOnly" value="2097152"/>
-            <enumerator name="ImhUrlCharactersOnly" value="4194304"/>
-            <enumerator name="ImhExclusiveInputMask" value="-65536"/>
-        </enum>
-        <enum name="InputMethodHints">
-            <enumerator name="ImhNone" value="0"/>
-            <enumerator name="ImhHiddenText" value="1"/>
-            <enumerator name="ImhNoAutoUppercase" value="2"/>
-            <enumerator name="ImhPreferNumbers" value="4"/>
-            <enumerator name="ImhPreferUppercase" value="8"/>
-            <enumerator name="ImhPreferLowercase" value="16"/>
-            <enumerator name="ImhNoPredictiveText" value="32"/>
-            <enumerator name="ImhDigitsOnly" value="65536"/>
-            <enumerator name="ImhFormattedNumbersOnly" value="131072"/>
-            <enumerator name="ImhUppercaseOnly" value="262144"/>
-            <enumerator name="ImhLowercaseOnly" value="524288"/>
-            <enumerator name="ImhDialableCharactersOnly" value="1048576"/>
-            <enumerator name="ImhEmailCharactersOnly" value="2097152"/>
-            <enumerator name="ImhUrlCharactersOnly" value="4194304"/>
-            <enumerator name="ImhExclusiveInputMask" value="-65536"/>
-        </enum>
-        <enum name="ToolButtonStyle">
-            <enumerator name="ToolButtonIconOnly" value="0"/>
-            <enumerator name="ToolButtonTextOnly" value="1"/>
-            <enumerator name="ToolButtonTextBesideIcon" value="2"/>
-            <enumerator name="ToolButtonTextUnderIcon" value="3"/>
-            <enumerator name="ToolButtonFollowStyle" value="4"/>
-        </enum>
-        <enum name="LayoutDirection">
-            <enumerator name="LeftToRight" value="0"/>
-            <enumerator name="RightToLeft" value="1"/>
-            <enumerator name="LayoutDirectionAuto" value="2"/>
-        </enum>
-        <enum name="DropAction">
-            <enumerator name="CopyAction" value="1"/>
-            <enumerator name="MoveAction" value="2"/>
-            <enumerator name="LinkAction" value="4"/>
-            <enumerator name="ActionMask" value="255"/>
-            <enumerator name="TargetMoveAction" value="32770"/>
-            <enumerator name="IgnoreAction" value="0"/>
-        </enum>
-        <enum name="DropActions">
-            <enumerator name="CopyAction" value="1"/>
-            <enumerator name="MoveAction" value="2"/>
-            <enumerator name="LinkAction" value="4"/>
-            <enumerator name="ActionMask" value="255"/>
-            <enumerator name="TargetMoveAction" value="32770"/>
-            <enumerator name="IgnoreAction" value="0"/>
-        </enum>
-        <enum name="CheckState">
-            <enumerator name="Unchecked" value="0"/>
-            <enumerator name="PartiallyChecked" value="1"/>
-            <enumerator name="Checked" value="2"/>
-        </enum>
-        <enum name="ItemFlags">
-            <enumerator name="NoItemFlags" value="0"/>
-            <enumerator name="ItemIsSelectable" value="1"/>
-            <enumerator name="ItemIsEditable" value="2"/>
-            <enumerator name="ItemIsDragEnabled" value="4"/>
-            <enumerator name="ItemIsDropEnabled" value="8"/>
-            <enumerator name="ItemIsUserCheckable" value="16"/>
-            <enumerator name="ItemIsEnabled" value="32"/>
-            <enumerator name="ItemIsTristate" value="64"/>
-        </enum>
-        <enum name="MatchFlags">
-            <enumerator name="MatchExactly" value="0"/>
-            <enumerator name="MatchContains" value="1"/>
-            <enumerator name="MatchStartsWith" value="2"/>
-            <enumerator name="MatchEndsWith" value="3"/>
-            <enumerator name="MatchRegExp" value="4"/>
-            <enumerator name="MatchWildcard" value="5"/>
-            <enumerator name="MatchFixedString" value="8"/>
-            <enumerator name="MatchCaseSensitive" value="16"/>
-            <enumerator name="MatchWrap" value="32"/>
-            <enumerator name="MatchRecursive" value="64"/>
-        </enum>
-        <enum name="WindowModality">
-            <enumerator name="NonModal" value="0"/>
-            <enumerator name="WindowModal" value="1"/>
-            <enumerator name="ApplicationModal" value="2"/>
-        </enum>
-        <enum name="TextInteractionFlag">
-            <enumerator name="NoTextInteraction" value="0"/>
-            <enumerator name="TextSelectableByMouse" value="1"/>
-            <enumerator name="TextSelectableByKeyboard" value="2"/>
-            <enumerator name="LinksAccessibleByMouse" value="4"/>
-            <enumerator name="LinksAccessibleByKeyboard" value="8"/>
-            <enumerator name="TextEditable" value="16"/>
-            <enumerator name="TextEditorInteraction" value="19"/>
-            <enumerator name="TextBrowserInteraction" value="13"/>
-        </enum>
-        <enum name="TextInteractionFlags">
-            <enumerator name="NoTextInteraction" value="0"/>
-            <enumerator name="TextSelectableByMouse" value="1"/>
-            <enumerator name="TextSelectableByKeyboard" value="2"/>
-            <enumerator name="LinksAccessibleByMouse" value="4"/>
-            <enumerator name="LinksAccessibleByKeyboard" value="8"/>
-            <enumerator name="TextEditable" value="16"/>
-            <enumerator name="TextEditorInteraction" value="19"/>
-            <enumerator name="TextBrowserInteraction" value="13"/>
-        </enum>
-        <enum name="SizeHint">
-            <enumerator name="MinimumSize" value="0"/>
-            <enumerator name="PreferredSize" value="1"/>
-            <enumerator name="MaximumSize" value="2"/>
-            <enumerator name="MinimumDescent" value="3"/>
-            <enumerator name="NSizeHints" value="4"/>
-        </enum>
-        <enum name="GestureState">
-            <enumerator name="NoGesture" value="0"/>
-            <enumerator name="GestureStarted" value="1"/>
-            <enumerator name="GestureUpdated" value="2"/>
-            <enumerator name="GestureFinished" value="3"/>
-            <enumerator name="GestureCanceled" value="4"/>
-        </enum>
-        <enum name="GestureType">
-            <enumerator name="TapGesture" value="1"/>
-            <enumerator name="TapAndHoldGesture" value="2"/>
-            <enumerator name="PanGesture" value="3"/>
-            <enumerator name="PinchGesture" value="4"/>
-            <enumerator name="SwipeGesture" value="5"/>
-            <enumerator name="CustomGesture" value="256"/>
-            <enumerator name="LastGestureType" value="-1"/>
-        </enum>
-    </type>
-    <type name="__extended__.QGraphicsWidget" defaultProperty="children" extends="QGraphicsObject">
-        <exports>
-            <export module="Qt" version="4.7" type="QGraphicsWidget"/>
-            <export module="QtQuick" version="1.0" type="QGraphicsWidget"/>
-        </exports>
-        <property name="palette" type="QPalette" isWritable="true"/>
-        <property name="font" type="QFont" isWritable="true"/>
-        <property name="layoutDirection" type="Qt.LayoutDirection" isWritable="true"/>
-        <property name="size" type="QSizeF" isWritable="true"/>
-        <property name="minimumSize" type="QSizeF" isWritable="true"/>
-        <property name="preferredSize" type="QSizeF" isWritable="true"/>
-        <property name="maximumSize" type="QSizeF" isWritable="true"/>
-        <property name="sizePolicy" type="QSizePolicy" isWritable="true"/>
-        <property name="focusPolicy" type="Qt.FocusPolicy" isWritable="true"/>
-        <property name="windowFlags" type="Qt.WindowFlags" isWritable="true"/>
-        <property name="windowTitle" type="string" isWritable="true"/>
-        <property name="geometry" type="QRectF" isWritable="true"/>
-        <property name="autoFillBackground" type="bool" isWritable="true"/>
-        <property name="layout" type="QGraphicsLayout" isWritable="true" isPointer="true"/>
-        <signal name="geometryChanged"/>
-        <signal name="layoutChanged"/>
-        <method name="close" type="bool"/>
-    </type>
-    <type name="QEasingCurve" extends="QDeclarativeEasingValueType"/>
-</module>
diff --git a/share/qtcreator/qml-type-descriptions/qmlproject-types.xml b/share/qtcreator/qml-type-descriptions/qmlproject-types.xml
deleted file mode 100644
index 192b45d6860fc78d221f92de25a55ae4b4ca1dfd..0000000000000000000000000000000000000000
--- a/share/qtcreator/qml-type-descriptions/qmlproject-types.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module>
-    <type name="QmlProject.Project">
-        <exports>
-            <export module="QmlProject" version="1.0" type="Project"/>
-            <export module="QmlProject" version="1.1" type="Project"/>
-        </exports>
-        <property name="sourceDirectory" type="string"/>
-        <property name="mainFile" type="string"/>
-        <property name="importPaths" type="string" isList="true"/>
-        <property name="content" type="QmlProjectItem" isList="true"/>
-    </type>
-    <type name="QmlProjectItem">
-    </type>
-    <type name="FileFilterBaseItem" extends="QmlProjectItem">
-        <property name="directory" type="string"/>
-        <property name="recursive" type="bool"/>
-        <property name="paths" type="string" isList="true"/>
-        <property name="files" type="string" isList="true"/>
-    </type>
-    <type name="QmlProject.QmlFiles" extends="FileFilterBaseItem">
-        <exports>
-            <export module="QmlProject" version="1.0" type="QmlFiles"/>
-            <export module="QmlProject" version="1.1" type="QmlFiles"/>
-        </exports>
-    </type>
-    <type name="QmlProject.JavaScriptFiles" extends="FileFilterBaseItem">
-        <exports>
-            <export module="QmlProject" version="1.0" type="JavaScriptFiles"/>
-            <export module="QmlProject" version="1.1" type="JavaScriptFiles"/>
-        </exports>
-	<property name="filter" type="string"/>
-    </type>
-    <type name="QmlProject.ImageFiles" extends="FileFilterBaseItem">
-        <exports>
-            <export module="QmlProject" version="1.0" type="ImageFiles"/>
-            <export module="QmlProject" version="1.1" type="ImageFiles"/>
-        </exports>
-	<property name="filter" type="string"/>
-    </type>
-    <type name="QmlProject.CssFiles" extends="FileFilterBaseItem">
-        <exports>
-            <export module="QmlProject" version="1.0" type="CssFiles"/>
-            <export module="QmlProject" version="1.1" type="CssFiles"/>
-        </exports>
-	<property name="filter" type="string"/>
-    </type>
-    <type name="QmlProject.Files" extends="FileFilterBaseItem">
-        <exports>
-            <export module="QmlProject" version="1.1" type="Files"/>
-        </exports>
-        <property name="filter" type="string"/>
-    </type>
-</module>
diff --git a/share/qtcreator/qml-type-descriptions/qmlproject.qmltypes b/share/qtcreator/qml-type-descriptions/qmlproject.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..a0dbed2b56fef2f333482dfb82e3b96d0f836d1b
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qmlproject.qmltypes
@@ -0,0 +1,72 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QmlProject.Project"
+        exports: [
+            "QmlProject/Project 1.0",
+            "QmlProject/Project 1.1"
+        ]
+        Property { name: "sourceDirectory"; type: "string" }
+        Property { name: "mainFile"; type: "string" }
+        Property { name: "importPaths"; type: "string"; isList: true }
+        Property { name: "content"; type: "QmlProjectItem"; isList: true }
+    }
+    Component {
+        name: "QmlProjectItem"
+    }
+    Component {
+        name: "FileFilterBaseItem"
+        prototype: "QmlProjectItem"
+        Property { name: "directory"; type: "string" }
+        Property { name: "recursive"; type: "string" }
+        Property { name: "paths"; type: "string"; isList: true }
+        Property { name: "files"; type: "string"; isList: true }
+    }
+    Component {
+        name: "QmlProject.QmlFiles"
+        prototype: "FileFilterBaseItem"
+        exports: [
+            "QmlProject/QmlFiles 1.0",
+            "QmlProject/QmlFiles 1.1"
+        ]
+    }
+    Component {
+        name: "QmlProject.JavaScriptFiles"
+        prototype: "FileFilterBaseItem"
+        exports: [
+            "QmlProject/JavaScriptFiles 1.0",
+            "QmlProject/JavaScriptFiles 1.1"
+        ]
+        Property { name: "filter"; type: "string" }
+    }
+    Component {
+        name: "QmlProject.ImageFiles"
+        prototype: "FileFilterBaseItem"
+        exports: [
+            "QmlProject/ImageFiles 1.0",
+            "QmlProject/ImageFiles 1.1"
+        ]
+        Property { name: "filter"; type: "string" }
+    }
+    Component {
+        name: "QmlProject.CssFiles"
+        prototype: "FileFilterBaseItem"
+        exports: [
+            "QmlProject/CssFiles 1.0",
+            "QmlProject/CssFiles 1.1"
+        ]
+        Property { name: "filter"; type: "string" }
+    }
+    Component {
+        name: "QmlProject.Files"
+        prototype: "FileFilterBaseItem"
+        exports: [
+            "QmlProject/Files 1.1"
+        ]
+        Property { name: "filter"; type: "string" }
+    }
+}
\ No newline at end of file
diff --git a/share/qtcreator/qml-type-descriptions/qmlruntime-types.xml b/share/qtcreator/qml-type-descriptions/qmlruntime-types.xml
deleted file mode 100644
index 362968d9e3ddbfd822772b1c7685f7830ec3b940..0000000000000000000000000000000000000000
--- a/share/qtcreator/qml-type-descriptions/qmlruntime-types.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module>
-    <type name="QDeclarativeViewer.Screen">
-        <exports>
-            <export module="QDeclarativeViewer" version="1.0" type="Screen"/>
-        </exports>
-        <enum name="Orientation">
-            <enumerator name="UnknownOrientation" value="0"/>
-            <enumerator name="Portrait" value="1"/>
-            <enumerator name="Landscape" value="2"/>
-        </enum>
-        <property name="orientation" type="Orientation"/>
-    </type>
-</module>
diff --git a/share/qtcreator/qml-type-descriptions/qmlruntime.qmltypes b/share/qtcreator/qml-type-descriptions/qmlruntime.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..2c930c93002f5e7f59f98aa0f64fb1675aa47f59
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qmlruntime.qmltypes
@@ -0,0 +1,22 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QDeclarativeViewer.Screen"
+        exports: [
+            "QDeclarativeViewer/Screen 1.0"
+        ]
+        Enum {
+            name: "Orientation"
+            values: {
+                "UnknownOrientation": 0,
+                "Portrait": 1,
+                "Landscape": 2
+            }
+        }
+        Property { name: "orientation"; type: "Orientation" }
+    }
+}
\ No newline at end of file
diff --git a/share/qtcreator/qml-type-descriptions/qt-labs-folderlistmodel.qmltypes b/share/qtcreator/qml-type-descriptions/qt-labs-folderlistmodel.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..19c0b48d8d6a51e6fd9571fb3f1ca067c1e919e5
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qt-labs-folderlistmodel.qmltypes
@@ -0,0 +1,141 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QAbstractItemModel"
+        prototype: "QObject"
+        Signal {
+            name: "dataChanged"
+            Parameter { name: "topLeft"; type: "QModelIndex" }
+            Parameter { name: "bottomRight"; type: "QModelIndex" }
+        }
+        Signal {
+            name: "headerDataChanged"
+            Parameter { name: "orientation"; type: "Qt::Orientation" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "layoutChanged" }
+        Signal { name: "layoutAboutToBeChanged" }
+        Signal {
+            name: "rowsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "modelAboutToBeReset" }
+        Signal { name: "modelReset" }
+        Signal {
+            name: "rowsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationRow"; type: "int" }
+        }
+        Signal {
+            name: "rowsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "row"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationColumn"; type: "int" }
+        }
+        Signal {
+            name: "columnsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "column"; type: "int" }
+        }
+        Method { name: "submit"; type: "bool" }
+        Method { name: "revert" }
+    }
+    Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
+    Component {
+        name: "QDeclarativeFolderListModel"
+        prototype: "QAbstractListModel"
+        exports: [
+            "Qt.labs.folderlistmodel/FolderListModel 1.0"
+        ]
+        Enum {
+            name: "SortField"
+            values: {
+                "Unsorted": 0,
+                "Name": 1,
+                "Time": 2,
+                "Size": 3,
+                "Type": 4
+            }
+        }
+        Property { name: "folder"; type: "QUrl" }
+        Property { name: "parentFolder"; type: "QUrl"; isReadonly: true }
+        Property { name: "nameFilters"; type: "QStringList" }
+        Property { name: "sortField"; type: "SortField" }
+        Property { name: "sortReversed"; type: "bool" }
+        Property { name: "showDirs"; type: "bool" }
+        Property { name: "showDotAndDotDot"; type: "bool" }
+        Property { name: "showOnlyReadable"; type: "bool" }
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Signal { name: "folderChanged" }
+        Method {
+            name: "isFolder"
+            type: "bool"
+            Parameter { name: "index"; type: "int" }
+        }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qt-labs-gestures.qmltypes b/share/qtcreator/qml-type-descriptions/qt-labs-gestures.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..f17eab145bab4f93595ac563335ba5b4bbd9af69
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qt-labs-gestures.qmltypes
@@ -0,0 +1,112 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QDeclarativeGestureArea"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt.labs.gestures/GestureArea 1.0"
+        ]
+        Property { name: "gesture"; type: "QGesture"; isReadonly: true; isPointer: true }
+    }
+    Component {
+        name: "QGesture"
+        prototype: "QObject"
+        exports: [
+            "Qt.labs.gestures/Gesture 1.0"
+        ]
+        Property { name: "state"; type: "Qt::GestureState"; isReadonly: true }
+        Property { name: "gestureType"; type: "Qt::GestureType"; isReadonly: true }
+        Property { name: "gestureCancelPolicy"; type: "QGesture::GestureCancelPolicy" }
+        Property { name: "hotSpot"; type: "QPointF" }
+        Property { name: "hasHotSpot"; type: "bool"; isReadonly: true }
+    }
+    Component {
+        name: "QPanGesture"
+        prototype: "QGesture"
+        exports: [
+            "Qt.labs.gestures/PanGesture 1.0"
+        ]
+        Property { name: "lastOffset"; type: "QPointF" }
+        Property { name: "offset"; type: "QPointF" }
+        Property { name: "delta"; type: "QPointF"; isReadonly: true }
+        Property { name: "acceleration"; type: "qreal" }
+        Property { name: "horizontalVelocity"; type: "qreal" }
+        Property { name: "verticalVelocity"; type: "qreal" }
+    }
+    Component {
+        name: "QPinchGesture"
+        prototype: "QGesture"
+        exports: [
+            "Qt.labs.gestures/PinchGesture 1.0"
+        ]
+        Enum {
+            name: "ChangeFlag"
+            values: {
+                "ScaleFactorChanged": 1,
+                "RotationAngleChanged": 2,
+                "CenterPointChanged": 4
+            }
+        }
+        Enum {
+            name: "ChangeFlags"
+            values: {
+                "ScaleFactorChanged": 1,
+                "RotationAngleChanged": 2,
+                "CenterPointChanged": 4
+            }
+        }
+        Property { name: "totalChangeFlags"; type: "ChangeFlags" }
+        Property { name: "changeFlags"; type: "ChangeFlags" }
+        Property { name: "totalScaleFactor"; type: "qreal" }
+        Property { name: "lastScaleFactor"; type: "qreal" }
+        Property { name: "scaleFactor"; type: "qreal" }
+        Property { name: "totalRotationAngle"; type: "qreal" }
+        Property { name: "lastRotationAngle"; type: "qreal" }
+        Property { name: "rotationAngle"; type: "qreal" }
+        Property { name: "startCenterPoint"; type: "QPointF" }
+        Property { name: "lastCenterPoint"; type: "QPointF" }
+        Property { name: "centerPoint"; type: "QPointF" }
+    }
+    Component {
+        name: "QSwipeGesture"
+        prototype: "QGesture"
+        exports: [
+            "Qt.labs.gestures/SwipeGesture 1.0"
+        ]
+        Enum {
+            name: "SwipeDirection"
+            values: {
+                "NoDirection": 0,
+                "Left": 1,
+                "Right": 2,
+                "Up": 3,
+                "Down": 4
+            }
+        }
+        Property { name: "horizontalDirection"; type: "SwipeDirection"; isReadonly: true }
+        Property { name: "verticalDirection"; type: "SwipeDirection"; isReadonly: true }
+        Property { name: "swipeAngle"; type: "qreal" }
+        Property { name: "velocity"; type: "qreal" }
+    }
+    Component {
+        name: "QTapAndHoldGesture"
+        prototype: "QGesture"
+        exports: [
+            "Qt.labs.gestures/TapAndHoldGesture 1.0"
+        ]
+        Property { name: "position"; type: "QPointF" }
+    }
+    Component {
+        name: "QTapGesture"
+        prototype: "QGesture"
+        exports: [
+            "Qt.labs.gestures/TapGesture 1.0"
+        ]
+        Property { name: "position"; type: "QPointF" }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qt-labs-particles.qmltypes b/share/qtcreator/qml-type-descriptions/qt-labs-particles.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..eff5d996f9bf4f3e0b2271df6b754cfe3560ba93
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qt-labs-particles.qmltypes
@@ -0,0 +1,91 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QDeclarativeParticleMotion"
+        prototype: "QObject"
+        exports: [
+            "Qt.labs.particles/ParticleMotion 1.0"
+        ]
+    }
+    Component {
+        name: "QDeclarativeParticleMotionGravity"
+        prototype: "QDeclarativeParticleMotion"
+        exports: [
+            "Qt.labs.particles/ParticleMotionGravity 1.0"
+        ]
+        Property { name: "xattractor"; type: "qreal" }
+        Property { name: "yattractor"; type: "qreal" }
+        Property { name: "acceleration"; type: "qreal" }
+        Signal { name: "xattractorChanged" }
+        Signal { name: "yattractorChanged" }
+        Signal { name: "accelerationChanged" }
+    }
+    Component {
+        name: "QDeclarativeParticleMotionLinear"
+        prototype: "QDeclarativeParticleMotion"
+        exports: [
+            "Qt.labs.particles/ParticleMotionLinear 1.0"
+        ]
+    }
+    Component {
+        name: "QDeclarativeParticleMotionWander"
+        prototype: "QDeclarativeParticleMotion"
+        exports: [
+            "Qt.labs.particles/ParticleMotionWander 1.0"
+        ]
+        Property { name: "xvariance"; type: "qreal" }
+        Property { name: "yvariance"; type: "qreal" }
+        Property { name: "pace"; type: "qreal" }
+        Signal { name: "xvarianceChanged" }
+        Signal { name: "yvarianceChanged" }
+        Signal { name: "paceChanged" }
+    }
+    Component {
+        name: "QDeclarativeParticles"
+        defaultProperty: "motion"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt.labs.particles/Particles 1.0"
+        ]
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "count"; type: "int" }
+        Property { name: "emissionRate"; type: "int" }
+        Property { name: "emissionVariance"; type: "qreal" }
+        Property { name: "lifeSpan"; type: "int" }
+        Property { name: "lifeSpanDeviation"; type: "int" }
+        Property { name: "fadeInDuration"; type: "int" }
+        Property { name: "fadeOutDuration"; type: "int" }
+        Property { name: "angle"; type: "qreal" }
+        Property { name: "angleDeviation"; type: "qreal" }
+        Property { name: "velocity"; type: "qreal" }
+        Property { name: "velocityDeviation"; type: "qreal" }
+        Property { name: "motion"; type: "QDeclarativeParticleMotion"; isPointer: true }
+        Signal { name: "sourceChanged" }
+        Signal { name: "countChanged" }
+        Signal { name: "emissionRateChanged" }
+        Signal { name: "emissionVarianceChanged" }
+        Signal { name: "lifeSpanChanged" }
+        Signal { name: "lifeSpanDeviationChanged" }
+        Signal { name: "fadeInDurationChanged" }
+        Signal { name: "fadeOutDurationChanged" }
+        Signal { name: "angleChanged" }
+        Signal { name: "angleDeviationChanged" }
+        Signal { name: "velocityChanged" }
+        Signal { name: "velocityDeviationChanged" }
+        Signal { name: "emittingChanged" }
+        Signal { name: "motionChanged" }
+        Method {
+            name: "burst"
+            Parameter { name: "count"; type: "int" }
+            Parameter { name: "emissionRate"; type: "int" }
+        }
+        Method {
+            name: "burst"
+            Parameter { name: "count"; type: "int" }
+        }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-contacts.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-contacts.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..e91c7e6fe5385825acc4a52b4b86c94d86edbe4f
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-contacts.qmltypes
@@ -0,0 +1,1154 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QAbstractItemModel"
+        prototype: "QObject"
+        Signal {
+            name: "dataChanged"
+            Parameter { name: "topLeft"; type: "QModelIndex" }
+            Parameter { name: "bottomRight"; type: "QModelIndex" }
+        }
+        Signal {
+            name: "headerDataChanged"
+            Parameter { name: "orientation"; type: "Qt::Orientation" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "layoutChanged" }
+        Signal { name: "layoutAboutToBeChanged" }
+        Signal {
+            name: "rowsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "modelAboutToBeReset" }
+        Signal { name: "modelReset" }
+        Signal {
+            name: "rowsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationRow"; type: "int" }
+        }
+        Signal {
+            name: "rowsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "row"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationColumn"; type: "int" }
+        }
+        Signal {
+            name: "columnsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "column"; type: "int" }
+        }
+        Method { name: "submit"; type: "bool" }
+        Method { name: "revert" }
+    }
+    Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
+    Component {
+        name: "QDeclarativeContact"
+        defaultProperty: "details"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.contacts/Contact 1.1"
+        ]
+        Enum {
+            name: "ContactType"
+            values: {
+                "Contact": 0,
+                "Group": 1
+            }
+        }
+        Property { name: "contactId"; type: "QContactLocalId"; isReadonly: true }
+        Property { name: "manager"; type: "string"; isReadonly: true }
+        Property { name: "details"; type: "QDeclarativeContactDetail"; isList: true; isReadonly: true }
+        Property {
+            name: "address"
+            type: "QDeclarativeContactAddress"
+            isReadonly: true
+            isPointer: true
+        }
+        Property {
+            name: "anniversary"
+            type: "QDeclarativeContactAnniversary"
+            isReadonly: true
+            isPointer: true
+        }
+        Property { name: "avatar"; type: "QDeclarativeContactAvatar"; isReadonly: true; isPointer: true }
+        Property {
+            name: "birthday"
+            type: "QDeclarativeContactBirthday"
+            isReadonly: true
+            isPointer: true
+        }
+        Property { name: "displayLabel"; type: "string"; isReadonly: true }
+        Property {
+            name: "email"
+            type: "QDeclarativeContactEmailAddress"
+            isReadonly: true
+            isPointer: true
+        }
+        Property { name: "family"; type: "QDeclarativeContactFamily"; isReadonly: true; isPointer: true }
+        Property {
+            name: "favorite"
+            type: "QDeclarativeContactFavorite"
+            isReadonly: true
+            isPointer: true
+        }
+        Property { name: "gender"; type: "QDeclarativeContactGender"; isReadonly: true; isPointer: true }
+        Property {
+            name: "geolocation"
+            type: "QDeclarativeContactGeoLocation"
+            isReadonly: true
+            isPointer: true
+        }
+        Property {
+            name: "globalPresence"
+            type: "QDeclarativeContactGlobalPresence"
+            isReadonly: true
+            isPointer: true
+        }
+        Property { name: "guid"; type: "QDeclarativeContactGuid"; isReadonly: true; isPointer: true }
+        Property { name: "name"; type: "QDeclarativeContactName"; isReadonly: true; isPointer: true }
+        Property {
+            name: "nickname"
+            type: "QDeclarativeContactNickname"
+            isReadonly: true
+            isPointer: true
+        }
+        Property { name: "note"; type: "QDeclarativeContactNote"; isReadonly: true; isPointer: true }
+        Property {
+            name: "onlineAccount"
+            type: "QDeclarativeContactOnlineAccount"
+            isReadonly: true
+            isPointer: true
+        }
+        Property {
+            name: "organization"
+            type: "QDeclarativeContactOrganization"
+            isReadonly: true
+            isPointer: true
+        }
+        Property {
+            name: "phoneNumber"
+            type: "QDeclarativeContactPhoneNumber"
+            isReadonly: true
+            isPointer: true
+        }
+        Property {
+            name: "presence"
+            type: "QDeclarativeContactPresence"
+            isReadonly: true
+            isPointer: true
+        }
+        Property {
+            name: "ringtone"
+            type: "QDeclarativeContactRingtone"
+            isReadonly: true
+            isPointer: true
+        }
+        Property {
+            name: "syncTarget"
+            type: "QDeclarativeContactSyncTarget"
+            isReadonly: true
+            isPointer: true
+        }
+        Property { name: "tag"; type: "QDeclarativeContactTag"; isReadonly: true; isPointer: true }
+        Property { name: "thumbnail"; type: "QUrl" }
+        Property { name: "type"; type: "ContactType" }
+        Property { name: "url"; type: "QDeclarativeContactUrl"; isReadonly: true; isPointer: true }
+        Property { name: "hobby"; type: "QDeclarativeContactHobby"; isReadonly: true; isPointer: true }
+        Property { name: "modified"; type: "bool"; isReadonly: true }
+        Signal { name: "contactIdChanged" }
+        Signal { name: "managerChanged" }
+        Signal { name: "detailsChanged" }
+        Method { name: "clearDetails" }
+        Method { name: "save" }
+        Method {
+            name: "detail"
+            type: "QDeclarativeContactDetail*"
+            Parameter { name: "name"; type: "QVariant" }
+        }
+        Method {
+            name: "details"
+            type: "QDeclarativeListProperty<QDeclarativeContactDetail>"
+            Parameter { name: "name"; type: "QVariant" }
+        }
+        Method {
+            name: "removeDetail"
+            type: "bool"
+            Parameter { name: "detail"; type: "QDeclarativeContactDetail"; isPointer: true }
+        }
+        Method {
+            name: "addDetail"
+            type: "bool"
+            Parameter { name: "detail"; type: "QDeclarativeContactDetail"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativeContactActionFilter"
+        prototype: "QDeclarativeContactFilter"
+        exports: [
+            "QtMobility.contacts/ActionFilter 1.1"
+        ]
+        Property { name: "actionName"; type: "string" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactAddress"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Address 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Street": 0,
+                "Locality": 1,
+                "Region": 2,
+                "Postcode": 3,
+                "Country": 4,
+                "SubTypes": 5,
+                "PostOfficeBox": 6
+            }
+        }
+        Enum {
+            name: "AddressSubType"
+            values: {
+                "Parcel": 0,
+                "Postal": 1,
+                "Domestic": 2,
+                "International": 3
+            }
+        }
+        Property { name: "street"; type: "string" }
+        Property { name: "locality"; type: "string" }
+        Property { name: "region"; type: "string" }
+        Property { name: "postcode"; type: "string" }
+        Property { name: "country"; type: "string" }
+        Property { name: "subTypes"; type: "QVariant" }
+        Property { name: "postOfficeBox"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactAnniversary"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Anniversary 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "CalendarId": 0,
+                "OriginalDate": 1,
+                "Event": 2,
+                "SubType": 3
+            }
+        }
+        Enum {
+            name: "AnniversarySubType"
+            values: {
+                "Unknown": 0,
+                "Wedding": 1,
+                "Engagement": 2,
+                "House": 3,
+                "Employment": 4,
+                "Memorial": 5
+            }
+        }
+        Property { name: "calendarId"; type: "string" }
+        Property { name: "originalDate"; type: "QDate" }
+        Property { name: "originalDateTime"; type: "QDateTime" }
+        Property { name: "event"; type: "string" }
+        Property { name: "subType"; type: "AnniversarySubType" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactAvatar"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Avatar 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "ImageUrl": 0,
+                "VideoUrl": 1
+            }
+        }
+        Property { name: "imageUrl"; type: "QUrl" }
+        Property { name: "videoUrl"; type: "QUrl" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactBirthday"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Birthday 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Birthday": 0
+            }
+        }
+        Property { name: "birthday"; type: "QDateTime" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactChangeLogFilter"
+        prototype: "QDeclarativeContactFilter"
+        exports: [
+            "QtMobility.contacts/ChangeLogFilter 1.1"
+        ]
+        Enum {
+            name: "EventType"
+            values: {
+                "EventAdded": 0,
+                "EventChanged": 1,
+                "EventRemoved": 2
+            }
+        }
+        Property { name: "since"; type: "QDateTime" }
+        Property { name: "eventType"; type: "EventType" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactDetail"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.contacts/ContactDetail 1.1"
+        ]
+        Enum {
+            name: "ContactDetailType"
+            values: {
+                "Address": 0,
+                "Anniversary": 1,
+                "Avatar": 2,
+                "Birthday": 3,
+                "DisplayLabel": 4,
+                "Email": 5,
+                "Family": 6,
+                "Favorite": 7,
+                "Gender": 8,
+                "Geolocation": 9,
+                "GlobalPresence": 10,
+                "Guid": 11,
+                "Name": 12,
+                "NickName": 13,
+                "Note": 14,
+                "OnlineAccount": 15,
+                "Organization": 16,
+                "PhoneNumber": 17,
+                "Presence": 18,
+                "Ringtone": 19,
+                "SyncTarget": 20,
+                "Tag": 21,
+                "Timestamp": 22,
+                "Url": 23,
+                "Hobby": 24,
+                "Customized": 100
+            }
+        }
+        Property { name: "type"; type: "ContactDetailType"; isReadonly: true }
+        Property { name: "definitionName"; type: "string"; isReadonly: true }
+        Property { name: "contexts"; type: "QStringList" }
+        Property { name: "detailUri"; type: "string" }
+        Property { name: "linkedDetailUris"; type: "QStringList" }
+        Property { name: "fieldNames"; type: "QStringList"; isReadonly: true }
+        Property { name: "readOnly"; type: "bool"; isReadonly: true }
+        Property { name: "removable"; type: "bool"; isReadonly: true }
+        Signal { name: "valueChanged" }
+        Method {
+            name: "value"
+            type: "QVariant"
+            Parameter { name: "key"; type: "string" }
+        }
+        Method {
+            name: "setValue"
+            type: "bool"
+            Parameter { name: "key"; type: "string" }
+            Parameter { name: "value"; type: "QVariant" }
+        }
+    }
+    Component {
+        name: "QDeclarativeContactDetailFilter"
+        prototype: "QDeclarativeContactFilter"
+        exports: [
+            "QtMobility.contacts/DetailFilter 1.1"
+        ]
+        Property { name: "detail"; type: "QVariant" }
+        Property { name: "field"; type: "QVariant" }
+        Property { name: "value"; type: "QVariant" }
+        Property { name: "matchFlags"; type: "MatchFlags" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactDetailRangeFilter"
+        prototype: "QDeclarativeContactFilter"
+        exports: [
+            "QtMobility.contacts/DetailRangeFilter 1.1"
+        ]
+        Enum {
+            name: "RangeFlags"
+            values: {
+                "IncludeLower": 0,
+                "IncludeUpper": 1,
+                "ExcludeLower": 2,
+                "ExcludeUpper": 0
+            }
+        }
+        Property { name: "detail"; type: "QVariant" }
+        Property { name: "field"; type: "QVariant" }
+        Property { name: "min"; type: "QVariant" }
+        Property { name: "max"; type: "QVariant" }
+        Property { name: "matchFlags"; type: "MatchFlags" }
+        Property { name: "rangeFlags"; type: "RangeFlags" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactDisplayLabel"
+        defaultProperty: "label"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/DisplayLabel 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Label": 0
+            }
+        }
+        Property { name: "label"; type: "string"; isReadonly: true }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactEmailAddress"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/EmailAddress 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "EmailAddress": 0
+            }
+        }
+        Property { name: "emailAddress"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactFamily"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Family 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Spouse": 0,
+                "Children": 1
+            }
+        }
+        Property { name: "spouse"; type: "string" }
+        Property { name: "children"; type: "QStringList" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactFavorite"
+        defaultProperty: "index"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Favorite 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Favorite": 0,
+                "Index": 1
+            }
+        }
+        Property { name: "favorite"; type: "bool" }
+        Property { name: "index"; type: "int" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactFetchHint"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.contacts/FetchHint 1.1"
+        ]
+        Enum {
+            name: "OptimizationHints"
+            values: {
+                "AllRequired": 0,
+                "NoRelationships": 1,
+                "NoActionPreferences": 2,
+                "NoBinaryBlobs": 4
+            }
+        }
+        Property { name: "detailDefinitionsHint"; type: "QStringList" }
+        Property { name: "relationshipTypesHint"; type: "QStringList" }
+        Property { name: "optimizationHints"; type: "OptimizationHints" }
+        Property { name: "imageWidth"; type: "int" }
+        Property { name: "imageHeight"; type: "int" }
+        Signal { name: "fetchHintChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactFilter"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.contacts/Filter 1.1"
+        ]
+        Enum {
+            name: "FilterType"
+            values: {
+                "InvalidFilter": 0,
+                "DetailFilter": 1,
+                "DetailRangeFilter": 2,
+                "ChangeLogFilter": 3,
+                "ActionFilter": 4,
+                "RelationshipFilter": 5,
+                "IntersectionFilter": 6,
+                "UnionFilter": 7,
+                "IdFilter": 8,
+                "DefaultFilter": 9
+            }
+        }
+        Enum {
+            name: "MatchFlags"
+            values: {
+                "MatchExactly": 0,
+                "MatchContains": 1,
+                "MatchStartsWith": 2,
+                "MatchEndsWith": 3,
+                "MatchFixedString": 8,
+                "MatchCaseSensitive": 16,
+                "MatchPhoneNumber": 1024,
+                "MatchKeypadCollation": 2048
+            }
+        }
+        Signal { name: "filterChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactGender"
+        defaultProperty: "gender"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Gender 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Gender": 0
+            }
+        }
+        Enum {
+            name: "GenderType"
+            values: {
+                "Male": 0,
+                "Female": 1
+            }
+        }
+        Property { name: "gender"; type: "GenderType" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactGeoLocation"
+        defaultProperty: "label"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Location 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Label": 0,
+                "Latitude": 1,
+                "Longitude": 2,
+                "Accuracy": 3,
+                "Altitude": 4,
+                "AltitudeAccuracy": 5,
+                "Heading": 6,
+                "Speed": 7,
+                "Timestamp": 8
+            }
+        }
+        Property { name: "label"; type: "string" }
+        Property { name: "latitude"; type: "double" }
+        Property { name: "longitude"; type: "double" }
+        Property { name: "accuracy"; type: "double" }
+        Property { name: "altitude"; type: "double" }
+        Property { name: "altitudeAccuracy"; type: "double" }
+        Property { name: "heading"; type: "double" }
+        Property { name: "speed"; type: "double" }
+        Property { name: "timestamp"; type: "QDateTime" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactGlobalPresence"
+        defaultProperty: "state"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/GlobalPresence 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Timestamp": 0,
+                "Nickname": 1,
+                "State": 2,
+                "StateText": 3,
+                "ImageUrl": 4,
+                "CustomMessage": 5
+            }
+        }
+        Property { name: "timestamp"; type: "QDateTime" }
+        Property { name: "nickname"; type: "string" }
+        Property { name: "state"; type: "QDeclarativeContactPresence::PresenceStateType" }
+        Property { name: "stateText"; type: "string" }
+        Property { name: "imageUrl"; type: "QUrl" }
+        Property { name: "customMessage"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactGuid"
+        defaultProperty: "guid"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Guid 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Guid": 0
+            }
+        }
+        Property { name: "guid"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactHobby"
+        defaultProperty: "hobby"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Hobby 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Hobby": 0
+            }
+        }
+        Property { name: "hobby"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactIntersectionFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeContactFilter"
+        exports: [
+            "QtMobility.contacts/IntersectionFilter 1.1"
+        ]
+        Property { name: "filters"; type: "QDeclarativeContactFilter"; isList: true; isReadonly: true }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactLocalIdFilter"
+        defaultProperty: "ids"
+        prototype: "QDeclarativeContactFilter"
+        exports: [
+            "QtMobility.contacts/IdFilter 1.1"
+        ]
+        Property { name: "ids"; type: "QStringList" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactModel"
+        prototype: "QAbstractListModel"
+        exports: [
+            "QtMobility.contacts/ContactModel 1.1"
+        ]
+        Property { name: "manager"; type: "string" }
+        Property { name: "availableManagers"; type: "QStringList"; isReadonly: true }
+        Property { name: "error"; type: "string"; isReadonly: true }
+        Property { name: "autoUpdate"; type: "bool" }
+        Property { name: "filter"; type: "QDeclarativeContactFilter"; isPointer: true }
+        Property { name: "fetchHint"; type: "QDeclarativeContactFetchHint"; isPointer: true }
+        Property { name: "contacts"; type: "QDeclarativeContact"; isList: true; isReadonly: true }
+        Property {
+            name: "sortOrders"
+            type: "QDeclarativeContactSortOrder"
+            isList: true
+            isReadonly: true
+        }
+        Signal { name: "managerChanged" }
+        Signal { name: "filterChanged" }
+        Signal { name: "errorChanged" }
+        Signal { name: "fetchHintChanged" }
+        Signal { name: "contactsChanged" }
+        Signal { name: "vcardChanged" }
+        Signal { name: "sortOrdersChanged" }
+        Signal { name: "autoUpdateChanged" }
+        Method { name: "update" }
+        Method { name: "cancelUpdate" }
+        Method {
+            name: "exportContacts"
+            Parameter { name: "url"; type: "QUrl" }
+            Parameter { name: "profiles"; type: "QStringList" }
+        }
+        Method {
+            name: "exportContacts"
+            Parameter { name: "url"; type: "QUrl" }
+        }
+        Method {
+            name: "importContacts"
+            Parameter { name: "url"; type: "QUrl" }
+            Parameter { name: "profiles"; type: "QStringList" }
+        }
+        Method {
+            name: "importContacts"
+            Parameter { name: "url"; type: "QUrl" }
+        }
+        Method {
+            name: "removeContacts"
+            Parameter { name: "ids"; type: "QList<QContactLocalId>" }
+        }
+        Method {
+            name: "fetchContacts"
+            Parameter { name: "contactIds"; type: "QList<QContactLocalId>" }
+        }
+        Method {
+            name: "removeContact"
+            Parameter { name: "id"; type: "QContactLocalId" }
+        }
+        Method {
+            name: "saveContact"
+            Parameter { name: "dc"; type: "QDeclarativeContact"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativeContactName"
+        defaultProperty: "firstName"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Name 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Prefix": 0,
+                "FirstName": 1,
+                "MiddleName": 2,
+                "LastName": 3,
+                "Suffix": 4,
+                "CustomLabel": 5
+            }
+        }
+        Property { name: "prefix"; type: "string" }
+        Property { name: "firstName"; type: "string" }
+        Property { name: "middleName"; type: "string" }
+        Property { name: "lastName"; type: "string" }
+        Property { name: "suffix"; type: "string" }
+        Property { name: "customLabel"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactNickname"
+        defaultProperty: "nickname"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Nickname 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "NickName": 0
+            }
+        }
+        Property { name: "nickname"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactNote"
+        defaultProperty: "note"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Note 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Note": 0
+            }
+        }
+        Property { name: "note"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactOnlineAccount"
+        defaultProperty: "accountUri"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/OnlineAccount 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "AccountUri": 0,
+                "ServiceProvider": 1,
+                "Capabilities": 2,
+                "SubTypes": 3
+            }
+        }
+        Enum {
+            name: "OnlineAccountSubType"
+            values: {
+                "Unknown": 0,
+                "Sip": 1,
+                "SipVoip": 2,
+                "Impp": 3,
+                "VideoShare": 4
+            }
+        }
+        Property { name: "accountUri"; type: "string" }
+        Property { name: "serviceProvider"; type: "string" }
+        Property { name: "capabilities"; type: "QStringList" }
+        Property { name: "subTypes"; type: "QVariant" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactOrganization"
+        defaultProperty: "name"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Organization 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Name": 0,
+                "LogoUrl": 1,
+                "Department": 2,
+                "Location": 3,
+                "Role": 4,
+                "Title": 5,
+                "AssistantName": 6
+            }
+        }
+        Property { name: "name"; type: "string" }
+        Property { name: "logoUrl"; type: "QUrl" }
+        Property { name: "department"; type: "QStringList" }
+        Property { name: "location"; type: "string" }
+        Property { name: "role"; type: "string" }
+        Property { name: "title"; type: "string" }
+        Property { name: "assistantName"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactPhoneNumber"
+        defaultProperty: "number"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/PhoneNumber 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Number": 0,
+                "SubTypes": 1
+            }
+        }
+        Enum {
+            name: "PhoneNumberSubType"
+            values: {
+                "Unknown": 0,
+                "Landline": 1,
+                "Mobile": 2,
+                "Fax": 3,
+                "Pager": 4,
+                "Voice": 5,
+                "Modem": 6,
+                "Video": 7,
+                "Car": 8,
+                "BulletinBoardSystem": 9,
+                "MessagingCapable": 10,
+                "Assistant": 11,
+                "DtmfMenu": 12
+            }
+        }
+        Property { name: "number"; type: "string" }
+        Property { name: "subTypes"; type: "QVariant" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactPresence"
+        defaultProperty: "state"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Presence 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Timestamp": 0,
+                "Nickname": 1,
+                "State": 2,
+                "StateText": 3,
+                "ImageUrl": 4,
+                "CustomMessage": 5
+            }
+        }
+        Enum {
+            name: "PresenceStateType"
+            values: {
+                "Unknown": 0,
+                "Available": 1,
+                "Hidden": 2,
+                "Busy": 3,
+                "Away": 4,
+                "ExtendedAway": 5,
+                "Offline": 6
+            }
+        }
+        Property { name: "timestamp"; type: "QDateTime" }
+        Property { name: "nickname"; type: "string" }
+        Property { name: "state"; type: "PresenceStateType" }
+        Property { name: "stateText"; type: "string" }
+        Property { name: "imageUrl"; type: "QUrl" }
+        Property { name: "customMessage"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactRelationship"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.contacts/Relationship 1.1"
+        ]
+        Enum {
+            name: "RelationshipRole"
+            values: {
+                "First": 0,
+                "Second": 1,
+                "Either": 2
+            }
+        }
+        Enum {
+            name: "RelationshipType"
+            values: {
+                "Unknown": 0,
+                "HasMember": 1,
+                "Aggregates": 2,
+                "IsSameAs": 3,
+                "HasAssistant": 4,
+                "HasManager": 5,
+                "HasSpouse": 6
+            }
+        }
+        Property { name: "first"; type: "QContactLocalId" }
+        Property { name: "second"; type: "QContactLocalId" }
+        Property { name: "type"; type: "QVariant" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactRelationshipFilter"
+        prototype: "QDeclarativeContactFilter"
+        exports: [
+            "QtMobility.contacts/RelationshipFilter 1.1"
+        ]
+        Property { name: "relationshipType"; type: "QVariant" }
+        Property { name: "relatedContactId"; type: "QContactLocalId" }
+        Property {
+            name: "relatedContactRole"
+            type: "QDeclarativeContactRelationship::RelationshipRole"
+        }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactRingtone"
+        defaultProperty: "audioRingtoneUrl"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Ringtone 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "AudioRingtoneUrl": 0,
+                "VideoRingtoneUrl": 1,
+                "VibrationRingtoneUrl": 2
+            }
+        }
+        Property { name: "audioRingtoneUrl"; type: "QUrl" }
+        Property { name: "videoRingtoneUrl"; type: "QUrl" }
+        Property { name: "vibrationRingtoneUrl"; type: "QUrl" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactSortOrder"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.contacts/SortOrder 1.1"
+        ]
+        Enum {
+            name: "BlankPolicy"
+            values: {
+                "BlanksFirst": 0,
+                "BlanksLast": 1
+            }
+        }
+        Property { name: "detail"; type: "QVariant" }
+        Property { name: "field"; type: "QVariant" }
+        Property { name: "direction"; type: "Qt::SortOrder" }
+        Property { name: "blankPolicy"; type: "BlankPolicy" }
+        Property { name: "caseSensitivity"; type: "Qt::CaseSensitivity" }
+        Signal { name: "sortOrderChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactSyncTarget"
+        defaultProperty: "syncTarget"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/SyncTarget 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "SyncTarget": 0
+            }
+        }
+        Property { name: "syncTarget"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactTag"
+        defaultProperty: "tag"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Tag 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Tag": 0
+            }
+        }
+        Property { name: "tag"; type: "string" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactTimestamp"
+        defaultProperty: "lastModified"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Timestamp 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "LastModified": 0,
+                "Created": 1
+            }
+        }
+        Property { name: "lastModified"; type: "QDateTime" }
+        Property { name: "created"; type: "QDateTime" }
+        Signal { name: "fieldsChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactUnionFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeContactFilter"
+        exports: [
+            "QtMobility.contacts/UnionFilter 1.1"
+        ]
+        Property { name: "filters"; type: "QDeclarativeContactFilter"; isList: true; isReadonly: true }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeContactUrl"
+        prototype: "QDeclarativeContactDetail"
+        exports: [
+            "QtMobility.contacts/Url 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Url": 0,
+                "SubType": 1
+            }
+        }
+        Enum {
+            name: "UrlSubType"
+            values: {
+                "Unknown": 0,
+                "HomePage": 1,
+                "Blog": 2,
+                "Favourite": 3
+            }
+        }
+        Property { name: "url"; type: "string" }
+        Property { name: "subType"; type: "QVariant" }
+        Signal { name: "fieldsChanged" }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-feedback.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-feedback.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..e95127827cf2a776f409cfd245a608a3904d8146
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-feedback.qmltypes
@@ -0,0 +1,240 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QDeclarativeFeedback"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.feedback/Feedback 1.1"
+        ]
+        Enum {
+            name: "Duration"
+            values: {
+                "Infinite": -1
+            }
+        }
+        Enum {
+            name: "State"
+            values: {
+                "Stopped": 0,
+                "Paused": 1,
+                "Running": 2,
+                "Loading": 3
+            }
+        }
+        Enum {
+            name: "ErrorType"
+            values: {
+                "UnknownError": 0,
+                "DeviceBusy": 1
+            }
+        }
+    }
+    Component {
+        name: "QDeclarativeFileEffect"
+        prototype: "QFeedbackFileEffect"
+        exports: [
+            "QtMobility.feedback/FileEffect 1.1"
+        ]
+        Property { name: "running"; type: "bool" }
+        Property { name: "paused"; type: "bool" }
+        Signal { name: "runningChanged" }
+        Signal { name: "pausedChanged" }
+        Method { name: "updateState" }
+    }
+    Component {
+        name: "QDeclarativeHapticsEffect"
+        prototype: "QFeedbackHapticsEffect"
+        exports: [
+            "QtMobility.feedback/HapticsEffect 1.1"
+        ]
+        Property { name: "actuators"; type: "QFeedbackActuator"; isList: true; isReadonly: true }
+        Property { name: "running"; type: "bool" }
+        Property { name: "paused"; type: "bool" }
+        Signal { name: "runningChanged" }
+        Signal { name: "pausedChanged" }
+        Signal { name: "actuatorsChanged" }
+        Method { name: "updateState" }
+    }
+    Component {
+        name: "QDeclarativeThemeEffect"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.feedback/ThemeEffect 1.1"
+        ]
+        Enum {
+            name: "ThemeEffect"
+            values: {
+                "Basic": 0,
+                "Sensitive": 1,
+                "BasicButton": 2,
+                "SensitiveButton": 3,
+                "BasicKeypad": 4,
+                "SensitiveKeypad": 5,
+                "BasicSlider": 6,
+                "SensitiveSlider": 7,
+                "BasicItem": 8,
+                "SensitiveItem": 9,
+                "ItemScroll": 10,
+                "ItemPick": 11,
+                "ItemDrop": 12,
+                "ItemMoveOver": 13,
+                "BounceEffect": 14,
+                "CheckBox": 15,
+                "MultipleCheckBox": 16,
+                "Editor": 17,
+                "TextSelection": 18,
+                "BlankSelection": 19,
+                "LineSelection": 20,
+                "EmptyLineSelection": 21,
+                "PopUp": 22,
+                "PopupOpen": 23,
+                "PopupClose": 24,
+                "Flick": 25,
+                "StopFlick": 26,
+                "MultiPointTouchActivate": 27,
+                "RotateStep": 28,
+                "LongPress": 29,
+                "PositiveTacticon": 30,
+                "NeutralTacticon": 31,
+                "NegativeTacticon": 32,
+                "NumberOfThemeEffects": 33,
+                "ThemeUser": 65535
+            }
+        }
+        Property { name: "supported"; type: "bool"; isReadonly: true }
+        Property { name: "effect"; type: "ThemeEffect" }
+        Signal { name: "effectChanged" }
+        Method { name: "play" }
+    }
+    Component {
+        name: "QFeedbackActuator"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.feedback/Actuator 1.1"
+        ]
+        Enum {
+            name: "Capability"
+            values: {
+                "Envelope": 0,
+                "Period": 1
+            }
+        }
+        Enum {
+            name: "State"
+            values: {
+                "Busy": 0,
+                "Ready": 1,
+                "Unknown": 2
+            }
+        }
+        Property { name: "id"; type: "int"; isReadonly: true }
+        Property { name: "name"; type: "string"; isReadonly: true }
+        Property { name: "state"; type: "QFeedbackActuator::State"; isReadonly: true }
+        Property { name: "valid"; type: "bool"; isReadonly: true }
+        Property { name: "enabled"; type: "bool" }
+        Signal { name: "enabledChanged" }
+        Method {
+            name: "isCapabilitySupported"
+            type: "bool"
+            Parameter { type: "Capability" }
+        }
+    }
+    Component {
+        name: "QFeedbackEffect"
+        prototype: "QObject"
+        Enum {
+            name: "ThemeEffect"
+            values: {
+                "ThemeBasic": 0,
+                "ThemeSensitive": 1,
+                "ThemeBasicButton": 2,
+                "ThemeSensitiveButton": 3,
+                "ThemeBasicKeypad": 4,
+                "ThemeSensitiveKeypad": 5,
+                "ThemeBasicSlider": 6,
+                "ThemeSensitiveSlider": 7,
+                "ThemeBasicItem": 8,
+                "ThemeSensitiveItem": 9,
+                "ThemeItemScroll": 10,
+                "ThemeItemPick": 11,
+                "ThemeItemDrop": 12,
+                "ThemeItemMoveOver": 13,
+                "ThemeBounceEffect": 14,
+                "ThemeCheckBox": 15,
+                "ThemeMultipleCheckBox": 16,
+                "ThemeEditor": 17,
+                "ThemeTextSelection": 18,
+                "ThemeBlankSelection": 19,
+                "ThemeLineSelection": 20,
+                "ThemeEmptyLineSelection": 21,
+                "ThemePopUp": 22,
+                "ThemePopupOpen": 23,
+                "ThemePopupClose": 24,
+                "ThemeFlick": 25,
+                "ThemeStopFlick": 26,
+                "ThemeMultiPointTouchActivate": 27,
+                "ThemeRotateStep": 28,
+                "ThemeLongPress": 29,
+                "ThemePositiveTacticon": 30,
+                "ThemeNeutralTacticon": 31,
+                "ThemeNegativeTacticon": 32,
+                "NumberOfThemeEffects": 33,
+                "ThemeUser": 65535
+            }
+        }
+        Enum {
+            name: "Duration"
+            values: {
+                "Infinite": -1
+            }
+        }
+        Enum {
+            name: "State"
+            values: {
+                "Stopped": 0,
+                "Paused": 1,
+                "Running": 2,
+                "Loading": 3
+            }
+        }
+        Enum {
+            name: "ErrorType"
+            values: {
+                "UnknownError": 0,
+                "DeviceBusy": 1
+            }
+        }
+        Property { name: "duration"; type: "int"; isReadonly: true }
+        Property { name: "state"; type: "State"; isReadonly: true }
+        Signal {
+            name: "error"
+            Parameter { type: "QFeedbackEffect::ErrorType" }
+        }
+        Signal { name: "stateChanged" }
+        Method { name: "start" }
+        Method { name: "stop" }
+        Method { name: "pause" }
+    }
+    Component {
+        name: "QFeedbackFileEffect"
+        prototype: "QFeedbackEffect"
+        Property { name: "loaded"; type: "bool" }
+        Property { name: "source"; type: "QUrl" }
+    }
+    Component {
+        name: "QFeedbackHapticsEffect"
+        prototype: "QFeedbackEffect"
+        Property { name: "duration"; type: "int" }
+        Property { name: "intensity"; type: "qreal" }
+        Property { name: "attackTime"; type: "int" }
+        Property { name: "attackIntensity"; type: "qreal" }
+        Property { name: "fadeTime"; type: "int" }
+        Property { name: "fadeIntensity"; type: "int" }
+        Property { name: "period"; type: "int" }
+        Property { name: "actuator"; type: "QFeedbackActuator"; isPointer: true }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-gallery.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-gallery.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..bdc50938424179a8057576ced411a790d0b3299d
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-gallery.qmltypes
@@ -0,0 +1,414 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QAbstractItemModel"
+        prototype: "QObject"
+        Signal {
+            name: "dataChanged"
+            Parameter { name: "topLeft"; type: "QModelIndex" }
+            Parameter { name: "bottomRight"; type: "QModelIndex" }
+        }
+        Signal {
+            name: "headerDataChanged"
+            Parameter { name: "orientation"; type: "Qt::Orientation" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "layoutChanged" }
+        Signal { name: "layoutAboutToBeChanged" }
+        Signal {
+            name: "rowsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "modelAboutToBeReset" }
+        Signal { name: "modelReset" }
+        Signal {
+            name: "rowsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationRow"; type: "int" }
+        }
+        Signal {
+            name: "rowsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "row"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationColumn"; type: "int" }
+        }
+        Signal {
+            name: "columnsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "column"; type: "int" }
+        }
+        Method { name: "submit"; type: "bool" }
+        Method { name: "revert" }
+    }
+    Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
+    Component {
+        name: "QDeclarativeDocumentGallery"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.gallery/DocumentGallery 1.1"
+        ]
+        Enum {
+            name: "ItemType"
+            values: {
+                "InvalidType": 0,
+                "File": 1,
+                "Folder": 2,
+                "Document": 3,
+                "Text": 4,
+                "Audio": 5,
+                "Image": 6,
+                "Video": 7,
+                "Playlist": 8,
+                "Artist": 9,
+                "AlbumArtist": 10,
+                "Album": 11,
+                "AudioGenre": 12,
+                "PhotoAlbum": 13
+            }
+        }
+    }
+    Component {
+        name: "QDeclarativeDocumentGalleryItem"
+        prototype: "QDeclarativeGalleryItem"
+        exports: [
+            "QtMobility.gallery/DocumentGalleryItem 1.1"
+        ]
+        Property { name: "itemType"; type: "QDeclarativeDocumentGallery::ItemType"; isReadonly: true }
+        Signal { name: "itemTypeChanged" }
+    }
+    Component {
+        name: "QDeclarativeDocumentGalleryModel"
+        prototype: "QDeclarativeGalleryQueryModel"
+        exports: [
+            "QtMobility.gallery/DocumentGalleryModel 1.1"
+        ]
+        Property { name: "rootType"; type: "QDeclarativeDocumentGallery::ItemType" }
+        Signal { name: "rootTypeChanged" }
+    }
+    Component {
+        name: "QDeclarativeDocumentGalleryType"
+        prototype: "QDeclarativeGalleryType"
+        exports: [
+            "QtMobility.gallery/DocumentGalleryType 1.1"
+        ]
+        Property { name: "itemType"; type: "QDeclarativeDocumentGallery::ItemType" }
+        Signal { name: "itemTypeChanged" }
+    }
+    Component {
+        name: "QDeclarativeGalleryContainsFilter"
+        prototype: "QDeclarativeGalleryStringFilter"
+        exports: [
+            "QtMobility.gallery/GalleryContainsFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryEndsWithFilter"
+        prototype: "QDeclarativeGalleryStringFilter"
+        exports: [
+            "QtMobility.gallery/GalleryEndsWithFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryEqualsFilter"
+        prototype: "QDeclarativeGalleryValueFilter"
+        exports: [
+            "QtMobility.gallery/GalleryEqualsFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryFilterBase"
+        prototype: "QObject"
+        Signal { name: "filterChanged" }
+    }
+    Component {
+        name: "QDeclarativeGalleryFilterGroup"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeGalleryFilterBase"
+        Property {
+            name: "filters"
+            type: "QDeclarativeGalleryFilterBase"
+            isList: true
+            isReadonly: true
+        }
+    }
+    Component {
+        name: "QDeclarativeGalleryFilterIntersection"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeGalleryFilterGroup"
+        exports: [
+            "QtMobility.gallery/GalleryFilterIntersection 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryFilterUnion"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeGalleryFilterGroup"
+        exports: [
+            "QtMobility.gallery/GalleryFilterUnion 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryGreaterThanEqualsFilter"
+        prototype: "QDeclarativeGalleryValueFilter"
+        exports: [
+            "QtMobility.gallery/GalleryGreaterThanEqualsFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryGreaterThanFilter"
+        prototype: "QDeclarativeGalleryValueFilter"
+        exports: [
+            "QtMobility.gallery/GalleryGreaterThanFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryItem"
+        prototype: "QObject"
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Active": 1,
+                "Canceling": 2,
+                "Canceled": 3,
+                "Idle": 4,
+                "Finished": 5,
+                "Error": 6
+            }
+        }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "progress"; type: "qreal"; isReadonly: true }
+        Property { name: "properties"; type: "QStringList" }
+        Property { name: "autoUpdate"; type: "bool" }
+        Property { name: "item"; type: "QVariant" }
+        Property { name: "available"; type: "bool"; isReadonly: true }
+        Property { name: "itemUrl"; type: "QUrl"; isReadonly: true }
+        Property { name: "metaData"; type: "QObject"; isReadonly: true; isPointer: true }
+        Signal { name: "statusChanged" }
+        Signal { name: "progressChanged" }
+        Signal { name: "availableChanged" }
+        Signal { name: "metaDataChanged" }
+        Signal { name: "galleryChanged" }
+        Signal { name: "propertyNamesChanged" }
+        Signal { name: "autoUpdateChanged" }
+        Signal { name: "itemIdChanged" }
+        Method { name: "reload" }
+        Method { name: "cancel" }
+        Method { name: "clear" }
+    }
+    Component {
+        name: "QDeclarativeGalleryLessThanEqualsFilter"
+        prototype: "QDeclarativeGalleryValueFilter"
+        exports: [
+            "QtMobility.gallery/GalleryLessThanEqualsFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryLessThanFilter"
+        prototype: "QDeclarativeGalleryValueFilter"
+        exports: [
+            "QtMobility.gallery/GalleryLessThanFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryQueryModel"
+        prototype: "QAbstractListModel"
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Active": 1,
+                "Canceling": 2,
+                "Canceled": 3,
+                "Idle": 4,
+                "Finished": 5,
+                "Error": 6
+            }
+        }
+        Enum {
+            name: "Scope"
+            values: {
+                "AllDescendants": 0,
+                "DirectDescendants": 1
+            }
+        }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "progress"; type: "qreal"; isReadonly: true }
+        Property { name: "properties"; type: "QStringList" }
+        Property { name: "sortProperties"; type: "QStringList" }
+        Property { name: "autoUpdate"; type: "bool" }
+        Property { name: "rootItem"; type: "QVariant" }
+        Property { name: "scope"; type: "Scope" }
+        Property { name: "offset"; type: "int" }
+        Property { name: "limit"; type: "int" }
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Property { name: "filter"; type: "QDeclarativeGalleryFilterBase"; isPointer: true }
+        Signal { name: "statusChanged" }
+        Signal { name: "progressChanged" }
+        Signal { name: "propertyNamesChanged" }
+        Signal { name: "sortPropertyNamesChanged" }
+        Signal { name: "autoUpdateChanged" }
+        Signal { name: "rootItemChanged" }
+        Signal { name: "scopeChanged" }
+        Signal { name: "filterChanged" }
+        Signal { name: "offsetChanged" }
+        Signal { name: "limitChanged" }
+        Signal { name: "countChanged" }
+        Method { name: "reload" }
+        Method { name: "cancel" }
+        Method { name: "clear" }
+        Method {
+            name: "get"
+            type: "QScriptValue"
+            Parameter { name: "index"; type: "QScriptValue" }
+        }
+        Method {
+            name: "property"
+            type: "QVariant"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "property"; type: "string" }
+        }
+        Method {
+            name: "set"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "value"; type: "QScriptValue" }
+        }
+        Method {
+            name: "setProperty"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "property"; type: "string" }
+            Parameter { name: "value"; type: "QVariant" }
+        }
+    }
+    Component {
+        name: "QDeclarativeGalleryStartsWithFilter"
+        prototype: "QDeclarativeGalleryStringFilter"
+        exports: [
+            "QtMobility.gallery/GalleryStartsWithFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeGalleryStringFilter"
+        prototype: "QDeclarativeGalleryFilterBase"
+        Property { name: "property"; type: "string" }
+        Property { name: "value"; type: "string" }
+        Property { name: "negated"; type: "bool" }
+        Signal { name: "propertyNameChanged" }
+        Signal { name: "valueChanged" }
+        Signal { name: "negatedChanged" }
+    }
+    Component {
+        name: "QDeclarativeGalleryType"
+        prototype: "QObject"
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Active": 1,
+                "Canceling": 2,
+                "Canceled": 3,
+                "Idle": 4,
+                "Finished": 5,
+                "Error": 6
+            }
+        }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "progress"; type: "qreal"; isReadonly: true }
+        Property { name: "properties"; type: "QStringList" }
+        Property { name: "autoUpdate"; type: "bool" }
+        Property { name: "available"; type: "bool"; isReadonly: true }
+        Property { name: "metaData"; type: "QObject"; isReadonly: true; isPointer: true }
+        Signal { name: "statusChanged" }
+        Signal { name: "progressChanged" }
+        Signal { name: "availableChanged" }
+        Signal { name: "metaDataChanged" }
+        Signal { name: "galleryChanged" }
+        Signal { name: "propertyNamesChanged" }
+        Signal { name: "autoUpdateChanged" }
+        Method { name: "reload" }
+        Method { name: "cancel" }
+        Method { name: "clear" }
+    }
+    Component {
+        name: "QDeclarativeGalleryValueFilter"
+        prototype: "QDeclarativeGalleryFilterBase"
+        Property { name: "property"; type: "string" }
+        Property { name: "value"; type: "QVariant" }
+        Property { name: "negated"; type: "bool" }
+        Signal { name: "propertyNameChanged" }
+        Signal { name: "valueChanged" }
+        Signal { name: "negatedChanged" }
+    }
+    Component {
+        name: "QDeclarativeGalleryWildcardFilter"
+        prototype: "QDeclarativeGalleryStringFilter"
+        exports: [
+            "QtMobility.gallery/GalleryWildcardFilter 1.1"
+        ]
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-location.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-location.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..dd1f22f63bf1ce97f670b0bdb2b055b865097136
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-location.qmltypes
@@ -0,0 +1,916 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QAbstractItemModel"
+        prototype: "QObject"
+        Signal {
+            name: "dataChanged"
+            Parameter { name: "topLeft"; type: "QModelIndex" }
+            Parameter { name: "bottomRight"; type: "QModelIndex" }
+        }
+        Signal {
+            name: "headerDataChanged"
+            Parameter { name: "orientation"; type: "Qt::Orientation" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "layoutChanged" }
+        Signal { name: "layoutAboutToBeChanged" }
+        Signal {
+            name: "rowsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "modelAboutToBeReset" }
+        Signal { name: "modelReset" }
+        Signal {
+            name: "rowsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationRow"; type: "int" }
+        }
+        Signal {
+            name: "rowsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "row"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationColumn"; type: "int" }
+        }
+        Signal {
+            name: "columnsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "column"; type: "int" }
+        }
+        Method { name: "submit"; type: "bool" }
+        Method { name: "revert" }
+    }
+    Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
+    Component {
+        name: "QDeclarativeCoordinate"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/Coordinate 1.1"
+        ]
+        Property { name: "latitude"; type: "double" }
+        Property { name: "longitude"; type: "double" }
+        Property { name: "altitude"; type: "double" }
+        Signal {
+            name: "latitudeChanged"
+            Parameter { name: "latitude"; type: "double" }
+        }
+        Signal {
+            name: "longitudeChanged"
+            Parameter { name: "longitude"; type: "double" }
+        }
+        Signal {
+            name: "altitudeChanged"
+            Parameter { name: "altitude"; type: "double" }
+        }
+        Method {
+            name: "distanceTo"
+            type: "qreal"
+            Parameter { name: "coordinate"; type: "QObject"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativeGeoAddress"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/Address 1.1"
+        ]
+        Property { name: "country"; type: "string" }
+        Property { name: "countryCode"; type: "string" }
+        Property { name: "state"; type: "string" }
+        Property { name: "county"; type: "string" }
+        Property { name: "city"; type: "string" }
+        Property { name: "district"; type: "string" }
+        Property { name: "street"; type: "string" }
+        Property { name: "postcode"; type: "string" }
+        Signal { name: "countryChanged" }
+        Signal { name: "countryCodeChanged" }
+        Signal { name: "stateChanged" }
+        Signal { name: "countyChanged" }
+        Signal { name: "cityChanged" }
+        Signal { name: "districtChanged" }
+        Signal { name: "streetChanged" }
+        Signal { name: "postcodeChanged" }
+    }
+    Component {
+        name: "QDeclarativeGeoBoundingBox"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/BoundingBox 1.1"
+        ]
+        Property { name: "bottomLeft"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "bottomRight"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "topLeft"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "topRight"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "center"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "height"; type: "double" }
+        Property { name: "width"; type: "double" }
+        Signal { name: "bottomLeftChanged" }
+        Signal { name: "bottomRightChanged" }
+        Signal { name: "topLeftChanged" }
+        Signal { name: "topRightChanged" }
+        Signal { name: "centerChanged" }
+        Signal { name: "heightChanged" }
+        Signal { name: "widthChanged" }
+    }
+    Component {
+        name: "QDeclarativeGeoMapCircleObject"
+        prototype: "QGeoMapCircleObject"
+        exports: [
+            "QtMobility.location/MapCircle 1.1"
+        ]
+        Property { name: "center"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "color"; type: "QColor" }
+        Property {
+            name: "border"
+            type: "QDeclarativeGeoMapObjectBorder"
+            isReadonly: true
+            isPointer: true
+        }
+        Signal {
+            name: "declarativeCenterChanged"
+            Parameter { name: "center"; type: "const QDeclarativeCoordinate"; isPointer: true }
+        }
+        Signal {
+            name: "colorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+    }
+    Component {
+        name: "QDeclarativeGeoMapObject"
+        defaultProperty: "objects"
+        prototype: "QGeoMapGroupObject"
+        exports: [
+            "QtMobility.location/MapGroup 1.1"
+        ]
+        Property { name: "objects"; type: "QGeoMapObject"; isList: true; isReadonly: true }
+    }
+    Component {
+        name: "QDeclarativeGeoMapPixmapObject"
+        prototype: "QGeoMapPixmapObject"
+        exports: [
+            "QtMobility.location/MapImage 1.1"
+        ]
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Ready": 1,
+                "Loading": 2,
+                "Error": 3
+            }
+        }
+        Property { name: "coordinate"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Signal {
+            name: "declarativeCoordinateChanged"
+            Parameter { name: "coordinate"; type: "const QDeclarativeCoordinate"; isPointer: true }
+        }
+        Signal {
+            name: "sourceChanged"
+            Parameter { name: "source"; type: "QUrl" }
+        }
+        Signal {
+            name: "statusChanged"
+            Parameter { name: "status"; type: "QDeclarativeGeoMapPixmapObject::Status" }
+        }
+    }
+    Component {
+        name: "QDeclarativeGeoMapPolygonObject"
+        defaultProperty: "path"
+        prototype: "QGeoMapPolygonObject"
+        exports: [
+            "QtMobility.location/MapPolygon 1.1"
+        ]
+        Property { name: "path"; type: "QDeclarativeCoordinate"; isList: true; isReadonly: true }
+        Property { name: "color"; type: "QColor" }
+        Property {
+            name: "border"
+            type: "QDeclarativeGeoMapObjectBorder"
+            isReadonly: true
+            isPointer: true
+        }
+        Signal {
+            name: "colorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+    }
+    Component {
+        name: "QDeclarativeGeoMapPolylineObject"
+        defaultProperty: "path"
+        prototype: "QGeoMapPolylineObject"
+        exports: [
+            "QtMobility.location/MapPolyline 1.1"
+        ]
+        Property { name: "path"; type: "QDeclarativeCoordinate"; isList: true; isReadonly: true }
+        Property {
+            name: "border"
+            type: "QDeclarativeGeoMapObjectBorder"
+            isReadonly: true
+            isPointer: true
+        }
+    }
+    Component {
+        name: "QDeclarativeGeoMapRectangleObject"
+        prototype: "QGeoMapRectangleObject"
+        exports: [
+            "QtMobility.location/MapRectangle 1.1"
+        ]
+        Property { name: "topLeft"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "bottomRight"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "color"; type: "QColor" }
+        Property {
+            name: "border"
+            type: "QDeclarativeGeoMapObjectBorder"
+            isReadonly: true
+            isPointer: true
+        }
+        Signal {
+            name: "declarativeTopLeftChanged"
+            Parameter { name: "center"; type: "const QDeclarativeCoordinate"; isPointer: true }
+        }
+        Signal {
+            name: "declarativeBottomRightChanged"
+            Parameter { name: "center"; type: "const QDeclarativeCoordinate"; isPointer: true }
+        }
+        Signal {
+            name: "colorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+    }
+    Component {
+        name: "QDeclarativeGeoMapTextObject"
+        prototype: "QGeoMapTextObject"
+        exports: [
+            "QtMobility.location/MapText 1.1"
+        ]
+        Enum {
+            name: "HorizontalAlignment"
+            values: {
+                "AlignHCenter": 4,
+                "AlignLeft": 1,
+                "AlignRight": 2
+            }
+        }
+        Enum {
+            name: "VerticalAlignment"
+            values: {
+                "AlignVCenter": 128,
+                "AlignTop": 32,
+                "AlignBottom": 64
+            }
+        }
+        Property { name: "coordinate"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "color"; type: "QColor" }
+        Property { name: "horizontalAlignment"; type: "HorizontalAlignment" }
+        Property { name: "verticalAlignment"; type: "VerticalAlignment" }
+        Signal {
+            name: "declarativeCoordinateChanged"
+            Parameter { name: "coordinate"; type: "const QDeclarativeCoordinate"; isPointer: true }
+        }
+        Signal {
+            name: "colorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "horizontalAlignmentChanged"
+            Parameter { name: "alignment"; type: "HorizontalAlignment" }
+        }
+        Signal {
+            name: "verticalAlignmentChanged"
+            Parameter { name: "alignment"; type: "VerticalAlignment" }
+        }
+    }
+    Component {
+        name: "QDeclarativeGeoPlace"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/Place 1.1"
+        ]
+        Property { name: "viewport"; type: "QDeclarativeGeoBoundingBox"; isPointer: true }
+        Property { name: "coordinate"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "address"; type: "QDeclarativeGeoAddress"; isPointer: true }
+        Signal { name: "viewportChanged" }
+        Signal { name: "coordinateChanged" }
+        Signal { name: "addressChanged" }
+    }
+    Component {
+        name: "QDeclarativeGeoSearchModel"
+        prototype: "QAbstractListModel"
+        Property { name: "plugin"; type: "QDeclarativeGeoServiceProvider"; isPointer: true }
+        Property { name: "error"; type: "string"; isReadonly: true }
+        Signal {
+            name: "pluginChanged"
+            Parameter { name: "plugin"; type: "QDeclarativeGeoServiceProvider"; isPointer: true }
+        }
+        Signal {
+            name: "errorChanged"
+            Parameter { name: "error"; type: "string" }
+        }
+        Signal { name: "placesChanged" }
+    }
+    Component {
+        name: "QDeclarativeGeoServiceProvider"
+        defaultProperty: "parameters"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/Plugin 1.1"
+        ]
+        Property { name: "name"; type: "string" }
+        Property {
+            name: "parameters"
+            type: "QDeclarativeGeoServiceProviderParameter"
+            isList: true
+            isReadonly: true
+        }
+        Signal {
+            name: "nameChanged"
+            Parameter { name: "name"; type: "string" }
+        }
+    }
+    Component {
+        name: "QDeclarativeGeoServiceProviderParameter"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/PluginParameter 1.1"
+        ]
+        Property { name: "name"; type: "string" }
+        Property { name: "value"; type: "QVariant" }
+        Signal {
+            name: "nameChanged"
+            Parameter { name: "name"; type: "string" }
+        }
+        Signal {
+            name: "valueChanged"
+            Parameter { name: "value"; type: "QVariant" }
+        }
+    }
+    Component {
+        name: "QDeclarativeGeocodeModel"
+        prototype: "QDeclarativeGeoSearchModel"
+        exports: [
+            "QtMobility.location/GeocodeModel 1.1"
+        ]
+        Property { name: "address"; type: "QDeclarativeGeoAddress"; isPointer: true }
+        Signal {
+            name: "addressChanged"
+            Parameter { name: "address"; type: "QDeclarativeGeoAddress"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativeGraphicsGeoMap"
+        defaultProperty: "objects"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "QtMobility.location/Map 1.1"
+        ]
+        Enum {
+            name: "MapType"
+            values: {
+                "NoMap": 0,
+                "StreetMap": 1,
+                "SatelliteMapDay": 2,
+                "SatelliteMapNight": 3,
+                "TerrainMap": 4
+            }
+        }
+        Enum {
+            name: "ConnectivityMode"
+            values: {
+                "NoConnectivity": 0,
+                "OfflineMode": 1,
+                "OnlineMode": 2,
+                "HybridMode": 3
+            }
+        }
+        Property { name: "plugin"; type: "QDeclarativeGeoServiceProvider"; isPointer: true }
+        Property { name: "size"; type: "QSizeF" }
+        Property { name: "minimumZoomLevel"; type: "qreal"; isReadonly: true }
+        Property { name: "maximumZoomLevel"; type: "qreal"; isReadonly: true }
+        Property { name: "zoomLevel"; type: "qreal" }
+        Property { name: "mapType"; type: "MapType" }
+        Property { name: "center"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "connectivityMode"; type: "ConnectivityMode" }
+        Property { name: "objects"; type: "QGeoMapObject"; isList: true; isReadonly: true }
+        Signal {
+            name: "pluginChanged"
+            Parameter { name: "plugin"; type: "QDeclarativeGeoServiceProvider"; isPointer: true }
+        }
+        Signal {
+            name: "sizeChanged"
+            Parameter { name: "size"; type: "QSizeF" }
+        }
+        Signal {
+            name: "zoomLevelChanged"
+            Parameter { name: "zoomLevel"; type: "qreal" }
+        }
+        Signal {
+            name: "declarativeCenterChanged"
+            Parameter { name: "coordinate"; type: "const QDeclarativeCoordinate"; isPointer: true }
+        }
+        Signal {
+            name: "mapTypeChanged"
+            Parameter { name: "mapType"; type: "QDeclarativeGraphicsGeoMap::MapType" }
+        }
+        Signal {
+            name: "connectivityModeChanged"
+            Parameter { name: "connectivityMode"; type: "QDeclarativeGraphicsGeoMap::ConnectivityMode" }
+        }
+        Method {
+            name: "pan"
+            Parameter { name: "dx"; type: "int" }
+            Parameter { name: "dy"; type: "int" }
+        }
+        Method {
+            name: "toCoordinate"
+            type: "QDeclarativeCoordinate*"
+            Parameter { name: "screenPosition"; type: "QPointF" }
+        }
+        Method {
+            name: "toScreenPosition"
+            type: "QPointF"
+            Parameter { name: "coordinate"; type: "QDeclarativeCoordinate"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativeLandmark"
+        prototype: "QDeclarativeGeoPlace"
+        exports: [
+            "QtMobility.location/Landmark 1.1"
+        ]
+        Property { name: "name"; type: "string" }
+        Property { name: "phoneNumber"; type: "string" }
+        Property { name: "description"; type: "string" }
+        Property { name: "radius"; type: "double" }
+        Property { name: "iconSource"; type: "QUrl" }
+        Property { name: "url"; type: "QUrl" }
+        Signal { name: "nameChanged" }
+        Signal { name: "phoneNumberChanged" }
+        Signal { name: "descriptionChanged" }
+        Signal { name: "radiusChanged" }
+        Signal { name: "iconSourceChanged" }
+        Signal { name: "urlChanged" }
+        Signal { name: "coordinateChanged" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkAbstractModel"
+        prototype: "QAbstractListModel"
+        exports: [
+            "QtMobility.location/LandmarkAbstractModel 1.1"
+        ]
+        Enum {
+            name: "SortOrder"
+            values: {
+                "AscendingOrder": 0,
+                "DescendingOrder": 1,
+                "NoOrder": 2
+            }
+        }
+        Enum {
+            name: "SortKey"
+            values: {
+                "NoSort": 0,
+                "NameSort": 1
+            }
+        }
+        Property { name: "limit"; type: "int" }
+        Property { name: "offset"; type: "int" }
+        Property { name: "autoUpdate"; type: "bool" }
+        Property { name: "error"; type: "string"; isReadonly: true }
+        Property { name: "sortBy"; type: "SortKey" }
+        Property { name: "sortOrder"; type: "SortOrder" }
+        Signal { name: "sortByChanged" }
+        Signal { name: "sortOrderChanged" }
+        Signal { name: "errorChanged" }
+        Signal { name: "autoUpdateChanged" }
+        Signal { name: "limitChanged" }
+        Signal { name: "offsetChanged" }
+        Signal { name: "modelChanged" }
+        Signal { name: "databaseChanged" }
+        Method { name: "update" }
+        Method {
+            name: "setDbFileName"
+            Parameter { name: "fileName"; type: "string" }
+        }
+    }
+    Component {
+        name: "QDeclarativeLandmarkBoxFilter"
+        prototype: "QDeclarativeLandmarkFilterBase"
+        exports: [
+            "QtMobility.location/LandmarkBoxFilter 1.1"
+        ]
+        Property { name: "topLeft"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "bottomRight"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Signal { name: "topLeftChanged" }
+        Signal { name: "bottomRightChanged" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkCategory"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/LandmarkCategory 1.1"
+        ]
+        Property { name: "name"; type: "string" }
+        Property { name: "iconSource"; type: "QUrl" }
+        Signal { name: "nameChanged" }
+        Signal { name: "iconSourceChanged" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkCategoryFilter"
+        prototype: "QDeclarativeLandmarkFilterBase"
+        exports: [
+            "QtMobility.location/LandmarkCategoryFilter 1.1"
+        ]
+        Property { name: "category"; type: "QDeclarativeLandmarkCategory"; isPointer: true }
+        Signal { name: "categoryChanged" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkCategoryModel"
+        prototype: "QDeclarativeLandmarkAbstractModel"
+        exports: [
+            "QtMobility.location/LandmarkCategoryModel 1.1"
+        ]
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Property { name: "landmark"; type: "QDeclarativeLandmark"; isPointer: true }
+        Property {
+            name: "categories"
+            type: "QDeclarativeLandmarkCategory"
+            isList: true
+            isReadonly: true
+        }
+        Signal { name: "countChanged" }
+        Signal { name: "landmarkChanged" }
+        Signal { name: "categoriesChanged" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkCompoundFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeLandmarkFilterBase"
+        Property {
+            name: "filters"
+            type: "QDeclarativeLandmarkFilterBase"
+            isList: true
+            isReadonly: true
+        }
+    }
+    Component {
+        name: "QDeclarativeLandmarkFilterBase"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/LandmarkFilterBase 1.1"
+        ]
+        Signal { name: "filterContentChanged" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkIntersectionFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeLandmarkCompoundFilter"
+        exports: [
+            "QtMobility.location/LandmarkIntersectionFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeLandmarkModel"
+        prototype: "QDeclarativeLandmarkAbstractModel"
+        exports: [
+            "QtMobility.location/LandmarkModel 1.1"
+        ]
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Property { name: "filter"; type: "QDeclarativeLandmarkFilterBase"; isPointer: true }
+        Property { name: "landmarks"; type: "QDeclarativeLandmark"; isList: true; isReadonly: true }
+        Property { name: "importFile"; type: "string" }
+        Signal { name: "countChanged" }
+        Signal { name: "filterChanged" }
+        Signal { name: "landmarksChanged" }
+        Signal { name: "importFileChanged" }
+        Method { name: "importLandmarks" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkNameFilter"
+        prototype: "QDeclarativeLandmarkFilterBase"
+        exports: [
+            "QtMobility.location/LandmarkNameFilter 1.1"
+        ]
+        Property { name: "name"; type: "string" }
+        Signal { name: "nameChanged" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkProximityFilter"
+        prototype: "QDeclarativeLandmarkFilterBase"
+        exports: [
+            "QtMobility.location/LandmarkProximityFilter 1.1"
+        ]
+        Property { name: "center"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Property { name: "radius"; type: "double" }
+        Signal { name: "radiusChanged" }
+        Signal { name: "centerChanged" }
+    }
+    Component {
+        name: "QDeclarativeLandmarkUnionFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeLandmarkCompoundFilter"
+        exports: [
+            "QtMobility.location/LandmarkUnionFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativePosition"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/Position 1.1"
+        ]
+        Property { name: "latitudeValid"; type: "bool"; isReadonly: true }
+        Property { name: "longitudeValid"; type: "bool"; isReadonly: true }
+        Property { name: "altitudeValid"; type: "bool"; isReadonly: true }
+        Property { name: "coordinate"; type: "QDeclarativeCoordinate"; isReadonly: true; isPointer: true }
+        Property { name: "timestamp"; type: "QDateTime"; isReadonly: true }
+        Property { name: "speed"; type: "double"; isReadonly: true }
+        Property { name: "speedValid"; type: "bool"; isReadonly: true }
+        Signal { name: "latitudeValidChanged" }
+        Signal { name: "longitudeValidChanged" }
+        Signal { name: "altitudeValidChanged" }
+        Signal { name: "timestampChanged" }
+        Signal { name: "speedChanged" }
+        Signal { name: "speedValidChanged" }
+        Signal { name: "coordinateChanged" }
+    }
+    Component {
+        name: "QDeclarativePositionSource"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/PositionSource 1.1"
+        ]
+        Enum {
+            name: "PositioningMethod"
+            values: {
+                "NoPositioningMethod": 0,
+                "SatellitePositioningMethod": 255,
+                "NonSatellitePositioningMethod": -256,
+                "AllPositioningMethods": -1
+            }
+        }
+        Property { name: "position"; type: "QDeclarativePosition"; isReadonly: true; isPointer: true }
+        Property { name: "active"; type: "bool" }
+        Property { name: "nmeaSource"; type: "QUrl" }
+        Property { name: "updateInterval"; type: "int" }
+        Property { name: "positioningMethod"; type: "PositioningMethod"; isReadonly: true }
+        Signal { name: "positionChanged" }
+        Signal { name: "activeChanged" }
+        Signal { name: "nmeaSourceChanged" }
+        Signal { name: "updateIntervalChanged" }
+        Signal { name: "positioningMethodChanged" }
+        Method { name: "update" }
+        Method { name: "start" }
+        Method { name: "stop" }
+    }
+    Component {
+        name: "QDeclarativeReverseGeocodeModel"
+        prototype: "QDeclarativeGeoSearchModel"
+        exports: [
+            "QtMobility.location/ReverseGeocodeModel 1.1"
+        ]
+        Property { name: "coordinate"; type: "QDeclarativeCoordinate"; isPointer: true }
+        Signal {
+            name: "coordinateChanged"
+            Parameter { name: "coordinate"; type: "QDeclarativeCoordinate"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QGeoMapCircleObject"
+        prototype: "QGeoMapObject"
+        Property { name: "center"; type: "QGeoCoordinate" }
+        Property { name: "radius"; type: "qreal" }
+        Property { name: "pen"; type: "QPen" }
+        Property { name: "brush"; type: "QBrush" }
+        Signal {
+            name: "centerChanged"
+            Parameter { name: "center"; type: "QGeoCoordinate" }
+        }
+        Signal {
+            name: "radiusChanged"
+            Parameter { name: "radius"; type: "qreal" }
+        }
+        Signal {
+            name: "penChanged"
+            Parameter { name: "pen"; type: "QPen" }
+        }
+        Signal {
+            name: "brushChanged"
+            Parameter { name: "brush"; type: "QBrush" }
+        }
+    }
+    Component {
+        name: "QGeoMapGroupObject"
+        prototype: "QGeoMapObject"
+        Signal {
+            name: "childAdded"
+            Parameter { name: "childObject"; type: "QGeoMapObject"; isPointer: true }
+        }
+        Signal {
+            name: "childRemoved"
+            Parameter { name: "childObject"; type: "QGeoMapObject"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QGeoMapObject"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.location/QGeoMapObject 1.1"
+        ]
+        Property { name: "zValue"; type: "int" }
+        Property { name: "visible"; type: "bool" }
+        Property { name: "selected"; type: "bool" }
+        Signal {
+            name: "zValueChanged"
+            Parameter { name: "zValue"; type: "int" }
+        }
+        Signal {
+            name: "visibleChanged"
+            Parameter { name: "visible"; type: "bool" }
+        }
+        Signal {
+            name: "selectedChanged"
+            Parameter { name: "selected"; type: "bool" }
+        }
+    }
+    Component {
+        name: "QGeoMapPixmapObject"
+        prototype: "QGeoMapObject"
+        Property { name: "coordinate"; type: "QGeoCoordinate" }
+        Property { name: "pixmap"; type: "QPixmap" }
+        Property { name: "offset"; type: "QPoint" }
+        Signal {
+            name: "coordinateChanged"
+            Parameter { name: "coordinate"; type: "QGeoCoordinate" }
+        }
+        Signal {
+            name: "pixmapChanged"
+            Parameter { name: "pixmap"; type: "QPixmap" }
+        }
+        Signal {
+            name: "offsetChanged"
+            Parameter { name: "offset"; type: "QPoint" }
+        }
+    }
+    Component {
+        name: "QGeoMapPolygonObject"
+        prototype: "QGeoMapObject"
+        Property { name: "path"; type: "QList<QGeoCoordinate>" }
+        Property { name: "pen"; type: "QPen" }
+        Property { name: "brush"; type: "QBrush" }
+        Signal {
+            name: "pathChanged"
+            Parameter { name: "path"; type: "QList<QGeoCoordinate>" }
+        }
+        Signal {
+            name: "penChanged"
+            Parameter { name: "pen"; type: "QPen" }
+        }
+        Signal {
+            name: "brushChanged"
+            Parameter { name: "brush"; type: "QBrush" }
+        }
+    }
+    Component {
+        name: "QGeoMapPolylineObject"
+        prototype: "QGeoMapObject"
+        Property { name: "path"; type: "QList<QGeoCoordinate>" }
+        Property { name: "pen"; type: "QPen" }
+        Signal {
+            name: "pathChanged"
+            Parameter { name: "path"; type: "QList<QGeoCoordinate>" }
+        }
+        Signal {
+            name: "penChanged"
+            Parameter { name: "pen"; type: "QPen" }
+        }
+    }
+    Component {
+        name: "QGeoMapRectangleObject"
+        prototype: "QGeoMapObject"
+        Property { name: "topLeft"; type: "QGeoCoordinate" }
+        Property { name: "bottomRight"; type: "QGeoCoordinate" }
+        Property { name: "pen"; type: "QPen" }
+        Property { name: "brush"; type: "QBrush" }
+        Signal {
+            name: "topLeftChanged"
+            Parameter { name: "topLeft"; type: "QGeoCoordinate" }
+        }
+        Signal {
+            name: "bottomRightChanged"
+            Parameter { name: "bottomRight"; type: "QGeoCoordinate" }
+        }
+        Signal {
+            name: "penChanged"
+            Parameter { name: "pen"; type: "QPen" }
+        }
+        Signal {
+            name: "brushChanged"
+            Parameter { name: "brush"; type: "QBrush" }
+        }
+    }
+    Component {
+        name: "QGeoMapTextObject"
+        prototype: "QGeoMapObject"
+        Property { name: "coordinate"; type: "QGeoCoordinate" }
+        Property { name: "text"; type: "string" }
+        Property { name: "font"; type: "QFont" }
+        Property { name: "pen"; type: "QPen" }
+        Property { name: "brush"; type: "QBrush" }
+        Property { name: "offset"; type: "QPoint" }
+        Property { name: "alignment"; type: "Qt::Alignment" }
+        Signal {
+            name: "coordinateChanged"
+            Parameter { name: "coordinate"; type: "QGeoCoordinate" }
+        }
+        Signal {
+            name: "textChanged"
+            Parameter { name: "text"; type: "string" }
+        }
+        Signal {
+            name: "fontChanged"
+            Parameter { name: "font"; type: "QFont" }
+        }
+        Signal {
+            name: "penChanged"
+            Parameter { name: "pen"; type: "QPen" }
+        }
+        Signal {
+            name: "brushChanged"
+            Parameter { name: "brush"; type: "QBrush" }
+        }
+        Signal {
+            name: "offsetChanged"
+            Parameter { name: "offset"; type: "QPoint" }
+        }
+        Signal {
+            name: "alignmentChanged"
+            Parameter { name: "alignment"; type: "Qt::Alignment" }
+        }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-messaging.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-messaging.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..4aa0bf538ab9821b65ebdd3cfc617596beb522d0
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-messaging.qmltypes
@@ -0,0 +1,264 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QAbstractItemModel"
+        prototype: "QObject"
+        Signal {
+            name: "dataChanged"
+            Parameter { name: "topLeft"; type: "QModelIndex" }
+            Parameter { name: "bottomRight"; type: "QModelIndex" }
+        }
+        Signal {
+            name: "headerDataChanged"
+            Parameter { name: "orientation"; type: "Qt::Orientation" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "layoutChanged" }
+        Signal { name: "layoutAboutToBeChanged" }
+        Signal {
+            name: "rowsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "modelAboutToBeReset" }
+        Signal { name: "modelReset" }
+        Signal {
+            name: "rowsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationRow"; type: "int" }
+        }
+        Signal {
+            name: "rowsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "row"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationColumn"; type: "int" }
+        }
+        Signal {
+            name: "columnsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "column"; type: "int" }
+        }
+        Method { name: "submit"; type: "bool" }
+        Method { name: "revert" }
+    }
+    Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
+    Component {
+        name: "QDeclarativeMessageFilter"
+        prototype: "QDeclarativeMessageFilterBase"
+        exports: [
+            "QtMobility.messaging/MessageFilter 1.1"
+        ]
+        Enum {
+            name: "FilterType"
+            values: {
+                "AncestorFolder": 0,
+                "ParentFolder": 1,
+                "Priority": 2,
+                "Recipients": 3,
+                "Sender": 4,
+                "Size": 5,
+                "StandardFolder": 6,
+                "Status": 7,
+                "Subject": 8,
+                "Timestamp": 9,
+                "ReceptionTimestamp": 10,
+                "Type": 11
+            }
+        }
+        Enum {
+            name: "Comparator"
+            values: {
+                "Includes": 0,
+                "Excludes": 1,
+                "Equal": 2,
+                "NotEqual": 3,
+                "LessThan": 4,
+                "LessThanEqual": 5,
+                "GreaterThan": 6,
+                "GreaterThanEqual": 7
+            }
+        }
+        Enum {
+            name: "Priority"
+            values: {
+                "HighPriority": 1,
+                "NormalPriority": 2,
+                "LowPriority": 3
+            }
+        }
+        Enum {
+            name: "Type"
+            values: {
+                "Mms": 1,
+                "Sms": 2,
+                "Email": 4,
+                "InstantMessage": 8,
+                "AnyType": -1
+            }
+        }
+        Enum {
+            name: "Status"
+            values: {
+                "Read": 1,
+                "HasAttachments": 2,
+                "Incoming": 4,
+                "Removed": 8
+            }
+        }
+        Property { name: "type"; type: "FilterType" }
+        Property { name: "value"; type: "QVariant" }
+        Property { name: "comparator"; type: "Comparator" }
+        Signal { name: "typeChanged" }
+        Signal { name: "valueChanged" }
+        Signal { name: "comparatorChanged" }
+    }
+    Component {
+        name: "QDeclarativeMessageFilterBase"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.messaging/MessageFilterBase 1.1"
+        ]
+        Property { name: "negated"; type: "bool" }
+        Signal { name: "negatedChanged" }
+    }
+    Component {
+        name: "QDeclarativeMessageIntersectionFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeMessageFilterBase"
+        exports: [
+            "QtMobility.messaging/MessageIntersectionFilter 1.1"
+        ]
+        Property {
+            name: "filters"
+            type: "QDeclarativeMessageFilterBase"
+            isList: true
+            isReadonly: true
+        }
+    }
+    Component {
+        name: "QDeclarativeMessageModel"
+        prototype: "QAbstractListModel"
+        exports: [
+            "QtMobility.messaging/MessageModel 1.1"
+        ]
+        Enum {
+            name: "SortKey"
+            values: {
+                "Priority": 0,
+                "Sender": 1,
+                "Size": 2,
+                "StatusRead": 3,
+                "StatusIncoming": 4,
+                "Subject": 5,
+                "Timestamp": 6,
+                "ReceptionTimestamp": 7,
+                "Recipients": 8,
+                "Type": 9
+            }
+        }
+        Enum {
+            name: "SortOrder"
+            values: {
+                "AscendingOrder": 0,
+                "DescendingOrder": 1
+            }
+        }
+        Property { name: "filter"; type: "QDeclarativeMessageFilterBase"; isPointer: true }
+        Property { name: "sortBy"; type: "SortKey" }
+        Property { name: "sortOrder"; type: "SortOrder" }
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Property { name: "limit"; type: "int" }
+        Signal { name: "filterChanged" }
+        Signal { name: "sortByChanged" }
+        Signal { name: "sortOrderChanged" }
+        Signal { name: "limitChanged" }
+        Signal { name: "countChanged" }
+        Signal { name: "messageAdded" }
+        Method {
+            name: "showMessage"
+            Parameter { name: "index"; type: "int" }
+        }
+        Method {
+            name: "removeMessage"
+            Parameter { name: "index"; type: "int" }
+        }
+    }
+    Component {
+        name: "QDeclarativeMessageUnionFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeMessageFilterBase"
+        exports: [
+            "QtMobility.messaging/MessageUnionFilter 1.1"
+        ]
+        Property {
+            name: "filters"
+            type: "QDeclarativeMessageFilterBase"
+            isList: true
+            isReadonly: true
+        }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-organizer.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-organizer.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..f52d696af3d0142e9243cb12d8b310becc5063a7
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-organizer.qmltypes
@@ -0,0 +1,1036 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QAbstractItemModel"
+        prototype: "QObject"
+        Signal {
+            name: "dataChanged"
+            Parameter { name: "topLeft"; type: "QModelIndex" }
+            Parameter { name: "bottomRight"; type: "QModelIndex" }
+        }
+        Signal {
+            name: "headerDataChanged"
+            Parameter { name: "orientation"; type: "Qt::Orientation" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "layoutChanged" }
+        Signal { name: "layoutAboutToBeChanged" }
+        Signal {
+            name: "rowsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "rowsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsInserted"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal {
+            name: "columnsRemoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "first"; type: "int" }
+            Parameter { name: "last"; type: "int" }
+        }
+        Signal { name: "modelAboutToBeReset" }
+        Signal { name: "modelReset" }
+        Signal {
+            name: "rowsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationRow"; type: "int" }
+        }
+        Signal {
+            name: "rowsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "row"; type: "int" }
+        }
+        Signal {
+            name: "columnsAboutToBeMoved"
+            Parameter { name: "sourceParent"; type: "QModelIndex" }
+            Parameter { name: "sourceStart"; type: "int" }
+            Parameter { name: "sourceEnd"; type: "int" }
+            Parameter { name: "destinationParent"; type: "QModelIndex" }
+            Parameter { name: "destinationColumn"; type: "int" }
+        }
+        Signal {
+            name: "columnsMoved"
+            Parameter { name: "parent"; type: "QModelIndex" }
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+            Parameter { name: "destination"; type: "QModelIndex" }
+            Parameter { name: "column"; type: "int" }
+        }
+        Method { name: "submit"; type: "bool" }
+        Method { name: "revert" }
+    }
+    Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
+    Component {
+        name: "QDeclarativeOrganizerCollection"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.organizer/Collection 1.1"
+        ]
+        Property { name: "collectionId"; type: "string" }
+        Property { name: "name"; type: "string" }
+        Property { name: "description"; type: "string" }
+        Property { name: "color"; type: "QColor" }
+        Property { name: "image"; type: "QUrl" }
+        Signal { name: "valueChanged" }
+        Method {
+            name: "setMetaData"
+            Parameter { name: "key"; type: "string" }
+            Parameter { name: "value"; type: "QVariant" }
+        }
+        Method {
+            name: "metaData"
+            type: "QVariant"
+            Parameter { name: "key"; type: "string" }
+        }
+    }
+    Component {
+        name: "QDeclarativeOrganizerEvent"
+        defaultProperty: "details"
+        prototype: "QDeclarativeOrganizerItem"
+        exports: [
+            "QtMobility.organizer/Event 1.1"
+        ]
+        Property { name: "startDateTime"; type: "QDateTime" }
+        Property { name: "endDateTime"; type: "QDateTime" }
+        Property { name: "allDay"; type: "bool" }
+        Property { name: "location"; type: "string" }
+        Property { name: "priority"; type: "QDeclarativeOrganizerItemPriority::PriorityType" }
+        Property {
+            name: "recurrence"
+            type: "QDeclarativeOrganizerItemRecurrence"
+            isReadonly: true
+            isPointer: true
+        }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerEventOccurrence"
+        defaultProperty: "details"
+        prototype: "QDeclarativeOrganizerItem"
+        exports: [
+            "QtMobility.organizer/EventOccurrence 1.1"
+        ]
+        Property { name: "startDateTime"; type: "QDateTime" }
+        Property { name: "endDateTime"; type: "QDateTime" }
+        Property { name: "location"; type: "string" }
+        Property { name: "priority"; type: "QDeclarativeOrganizerItemPriority::PriorityType" }
+        Property { name: "parentId"; type: "string" }
+        Property { name: "originalDate"; type: "QDate" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerEventTime"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/EventTime 1.1"
+        ]
+        Property { name: "startDateTime"; type: "QDateTime" }
+        Property { name: "endDateTime"; type: "QDateTime" }
+        Property { name: "isAllDay"; type: "bool" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItem"
+        defaultProperty: "details"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.organizer/OrganizerItem 1.1"
+        ]
+        Enum {
+            name: "OrganizerItemType"
+            values: {
+                "Event": 0,
+                "EventOccurrence": 1,
+                "Todo": 2,
+                "TodoOccurrence": 3,
+                "Journal": 4,
+                "Note": 5,
+                "Customized": 100
+            }
+        }
+        Property {
+            name: "details"
+            type: "QDeclarativeOrganizerItemDetail"
+            isList: true
+            isReadonly: true
+        }
+        Property { name: "manager"; type: "string"; isReadonly: true }
+        Property { name: "itemId"; type: "string"; isReadonly: true }
+        Property { name: "type"; type: "string"; isReadonly: true }
+        Property { name: "displayLabel"; type: "string" }
+        Property { name: "description"; type: "string" }
+        Property { name: "guid"; type: "string" }
+        Property { name: "modified"; type: "bool"; isReadonly: true }
+        Property { name: "itemStartTime"; type: "QDateTime"; isReadonly: true }
+        Property { name: "itemEndTime"; type: "QDateTime"; isReadonly: true }
+        Property { name: "isOccurrence"; type: "bool"; isReadonly: true }
+        Property { name: "isFloatingTime"; type: "bool"; isReadonly: true }
+        Signal { name: "itemChanged" }
+        Method { name: "save" }
+        Method { name: "clearDetails" }
+        Method { name: "clearComments" }
+        Method {
+            name: "detail"
+            type: "QVariant"
+            Parameter { name: "name"; type: "string" }
+        }
+        Method {
+            name: "details"
+            type: "QVariant"
+            Parameter { name: "name"; type: "string" }
+        }
+        Method {
+            name: "addComment"
+            Parameter { name: "comment"; type: "string" }
+        }
+        Method {
+            name: "removeDetail"
+            type: "bool"
+            Parameter { name: "detail"; type: "QDeclarativeOrganizerItemDetail"; isPointer: true }
+        }
+        Method {
+            name: "addDetail"
+            type: "bool"
+            Parameter { name: "detail"; type: "QDeclarativeOrganizerItemDetail"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemAudibleReminder"
+        prototype: "QDeclarativeOrganizerItemReminder"
+        exports: [
+            "QtMobility.organizer/AudibleReminder 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "DataUrl": 0
+            }
+        }
+        Property { name: "dataUrl"; type: "QUrl" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemChangeLogFilter"
+        prototype: "QDeclarativeOrganizerItemFilter"
+        exports: [
+            "QtMobility.organizer/ChangeLogFilter 1.1"
+        ]
+        Enum {
+            name: "EventType"
+            values: {
+                "EventAdded": 0,
+                "EventChanged": 1,
+                "EventRemoved": 2
+            }
+        }
+        Property { name: "since"; type: "QDateTime" }
+        Property { name: "eventType"; type: "EventType" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemCollectionFilter"
+        prototype: "QDeclarativeOrganizerItemFilter"
+        exports: [
+            "QtMobility.organizer/CollectionFilter 1.1"
+        ]
+        Property { name: "ids"; type: "QStringList" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemDescription"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/Description 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Description": 0
+            }
+        }
+        Property { name: "description"; type: "string" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemDetail"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.organizer/Detail 1.1"
+        ]
+        Enum {
+            name: "ItemDetailType"
+            values: {
+                "EventTime": 0,
+                "JournalTime": 1,
+                "TodoTime": 2,
+                "TodoProgress": 3,
+                "Reminder": 4,
+                "AudibleReminder": 5,
+                "VisualReminder": 6,
+                "EmailReminder": 7,
+                "Comment": 8,
+                "Description": 9,
+                "DisplayLabel": 10,
+                "Guid": 11,
+                "Location": 12,
+                "Parent": 13,
+                "Priority": 14,
+                "Recurrence": 15,
+                "Timestamp": 16,
+                "Type": 17,
+                "Tag": 18,
+                "Customized": 100
+            }
+        }
+        Property { name: "definitionName"; type: "string"; isReadonly: true }
+        Property { name: "fieldNames"; type: "QStringList"; isReadonly: true }
+        Property { name: "type"; type: "ItemDetailType"; isReadonly: true }
+        Property { name: "readOnly"; type: "bool"; isReadonly: true }
+        Property { name: "removable"; type: "bool"; isReadonly: true }
+        Signal { name: "detailChanged" }
+        Method {
+            name: "value"
+            type: "QVariant"
+            Parameter { name: "key"; type: "string" }
+        }
+        Method {
+            name: "setValue"
+            type: "bool"
+            Parameter { name: "key"; type: "string" }
+            Parameter { name: "value"; type: "QVariant" }
+        }
+        Method {
+            name: "removeValue"
+            type: "bool"
+            Parameter { name: "key"; type: "string" }
+        }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemDetailFilter"
+        prototype: "QDeclarativeOrganizerItemFilter"
+        exports: [
+            "QtMobility.organizer/DetailFilter 1.1"
+        ]
+        Property { name: "value"; type: "QVariant" }
+        Property { name: "matchFlags"; type: "QDeclarativeOrganizerItemFilter::MatchFlags" }
+        Property { name: "field"; type: "QVariant" }
+        Property { name: "detail"; type: "QVariant" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemDetailRangeFilter"
+        prototype: "QDeclarativeOrganizerItemFilter"
+        exports: [
+            "QtMobility.organizer/DetailRangeFilter 1.1"
+        ]
+        Enum {
+            name: "RangeFlag"
+            values: {
+                "IncludeLower": 0,
+                "IncludeUpper": 1,
+                "ExcludeLower": 2,
+                "ExcludeUpper": 0
+            }
+        }
+        Enum {
+            name: "RangeFlags"
+            values: {
+                "IncludeLower": 0,
+                "IncludeUpper": 1,
+                "ExcludeLower": 2,
+                "ExcludeUpper": 0
+            }
+        }
+        Property { name: "min"; type: "QVariant" }
+        Property { name: "max"; type: "QVariant" }
+        Property { name: "matchFlags"; type: "QDeclarativeOrganizerItemFilter::MatchFlags" }
+        Property { name: "rangeFlags"; type: "RangeFlags" }
+        Property { name: "detail"; type: "QVariant" }
+        Property { name: "field"; type: "QVariant" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemDisplayLabel"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/DisplayLabel 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Label": 0
+            }
+        }
+        Property { name: "label"; type: "string" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemEmailReminder"
+        prototype: "QDeclarativeOrganizerItemReminder"
+        exports: [
+            "QtMobility.organizer/EmailReminder 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Subject": 0,
+                "Body": 1,
+                "Recipients": 2,
+                "Attachments": 3
+            }
+        }
+        Property { name: "subject"; type: "string" }
+        Property { name: "body"; type: "string" }
+        Property { name: "recipients"; type: "QStringList" }
+        Property { name: "attachments"; type: "QVariantList" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemFetchHint"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.organizer/FetchHint 1.1"
+        ]
+        Enum {
+            name: "OptimizationHint"
+            values: {
+                "AllRequired": 0,
+                "NoActionPreferences": 2,
+                "NoBinaryBlobs": 4
+            }
+        }
+        Enum {
+            name: "OptimizationHints"
+            values: {
+                "AllRequired": 0,
+                "NoActionPreferences": 2,
+                "NoBinaryBlobs": 4
+            }
+        }
+        Property { name: "optimizationHints"; type: "OptimizationHints" }
+        Signal { name: "fetchHintChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemFilter"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.organizer/Filter 1.1"
+        ]
+        Enum {
+            name: "FilterType"
+            values: {
+                "InvalidFilter": 0,
+                "DetailFilter": 1,
+                "DetailRangeFilter": 2,
+                "ChangeLogFilter": 3,
+                "ActionFilter": 4,
+                "IntersectionFilter": 5,
+                "UnionFilter": 6,
+                "IdFilter": 7,
+                "CollectionFilter": 8,
+                "DefaultFilter": 9
+            }
+        }
+        Enum {
+            name: "MatchFlags"
+            values: {
+                "MatchExactly": 0,
+                "MatchContains": 1,
+                "MatchStartsWith": 2,
+                "MatchEndsWith": 3,
+                "MatchFixedString": 8,
+                "MatchCaseSensitive": 16
+            }
+        }
+        Property { name: "type"; type: "FilterType"; isReadonly: true }
+        Signal { name: "filterChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemGuid"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/Guid 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Guid": 0
+            }
+        }
+        Property { name: "guid"; type: "string" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemIdFilter"
+        prototype: "QDeclarativeOrganizerItemFilter"
+        exports: [
+            "QtMobility.organizer/IdFilter 1.1"
+        ]
+        Property { name: "ids"; type: "QVariantList" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemIntersectionFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeOrganizerItemFilter"
+        exports: [
+            "QtMobility.organizer/IntersectionFilter 1.1"
+        ]
+        Property {
+            name: "filters"
+            type: "QDeclarativeOrganizerItemFilter"
+            isList: true
+            isReadonly: true
+        }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemInvalidFilter"
+        prototype: "QDeclarativeOrganizerItemFilter"
+        exports: [
+            "QtMobility.organizer/InvalidFilter 1.1"
+        ]
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemLocation"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/Location 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Latitude": 0,
+                "Longitude": 1,
+                "Label": 2
+            }
+        }
+        Property { name: "latitude"; type: "double" }
+        Property { name: "longitude"; type: "double" }
+        Property { name: "label"; type: "string" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemParent"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/ItemParent 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "ParentId": 0,
+                "OriginalDate": 1
+            }
+        }
+        Property { name: "parentId"; type: "string" }
+        Property { name: "originalDate"; type: "QDate" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemPriority"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/Priority 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Priority": 0
+            }
+        }
+        Enum {
+            name: "PriorityType"
+            values: {
+                "Unknown": 0,
+                "Highest": 1,
+                "ExtremelyHigh": 2,
+                "VeryHigh": 3,
+                "High": 4,
+                "Medium": 5,
+                "Low": 6,
+                "VeryLow": 7,
+                "ExtremelyLow": 8,
+                "Lowest": 9
+            }
+        }
+        Property { name: "priority"; type: "PriorityType" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemRecurrence"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/Recurrence 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "RecurrenceRules": 0,
+                "ExceptionRules": 1,
+                "RecurrenceDates": 2,
+                "ExceptionDates": 3
+            }
+        }
+        Property {
+            name: "recurrenceRules"
+            type: "QDeclarativeOrganizerRecurrenceRule"
+            isList: true
+            isReadonly: true
+        }
+        Property {
+            name: "exceptionRules"
+            type: "QDeclarativeOrganizerRecurrenceRule"
+            isList: true
+            isReadonly: true
+        }
+        Property { name: "recurrenceDates"; type: "QVariantList" }
+        Property { name: "exceptionDates"; type: "QVariantList" }
+        Signal { name: "recurrenceRulesChanged" }
+        Signal { name: "exceptionRulesChanged" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemReminder"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/Reminder 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Type": 0,
+                "SecondsBeforeStart": 1,
+                "RepetitionCount": 2,
+                "RepetitionDelay": 3
+            }
+        }
+        Enum {
+            name: "ReminderType"
+            values: {
+                "NoReminder": 0,
+                "VisualReminder": 1,
+                "AudibleReminder": 2,
+                "EmailReminder": 3
+            }
+        }
+        Property { name: "reminderType"; type: "ReminderType"; isReadonly: true }
+        Property { name: "secondsBeforeStart"; type: "int" }
+        Property { name: "repetitionCount"; type: "int" }
+        Property { name: "repetitionDelay"; type: "int" }
+        Signal { name: "reminderChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemSortOrder"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.organizer/SortOrder 1.1"
+        ]
+        Enum {
+            name: "BlankPolicy"
+            values: {
+                "BlanksFirst": 0,
+                "BlanksLast": 1
+            }
+        }
+        Property { name: "detail"; type: "QVariant" }
+        Property { name: "field"; type: "QVariant" }
+        Property { name: "blankPolicy"; type: "BlankPolicy" }
+        Property { name: "direction"; type: "Qt::SortOrder" }
+        Property { name: "sensitivity"; type: "Qt::CaseSensitivity" }
+        Signal { name: "sortOrderChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemTimestamp"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/Timestamp 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "LastModified": 0,
+                "Created": 1
+            }
+        }
+        Property { name: "lastModified"; type: "QDateTime" }
+        Property { name: "created"; type: "QDateTime" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemType"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/ItemType 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "ItemType": 0
+            }
+        }
+        Property { name: "itemType"; type: "OrganizerItemType" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemUnionFilter"
+        defaultProperty: "filters"
+        prototype: "QDeclarativeOrganizerItemFilter"
+        exports: [
+            "QtMobility.organizer/UnionFilter 1.1"
+        ]
+        Property {
+            name: "filters"
+            type: "QDeclarativeOrganizerItemFilter"
+            isList: true
+            isReadonly: true
+        }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerItemVisualReminder"
+        prototype: "QDeclarativeOrganizerItemReminder"
+        exports: [
+            "QtMobility.organizer/VisualReminder 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "DataUrl": 0,
+                "Message": 1
+            }
+        }
+        Property { name: "message"; type: "string" }
+        Property { name: "dataUrl"; type: "QUrl" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerJournal"
+        defaultProperty: "details"
+        prototype: "QDeclarativeOrganizerItem"
+        exports: [
+            "QtMobility.organizer/Journal 1.1"
+        ]
+        Property { name: "dateTime"; type: "QDateTime" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerJournalTime"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/JournalTime 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "EntryDateTime": 0
+            }
+        }
+        Property { name: "entryDateTime"; type: "QDateTime" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerModel"
+        prototype: "QAbstractListModel"
+        exports: [
+            "QtMobility.organizer/OrganizerModel 1.1"
+        ]
+        Property { name: "manager"; type: "string" }
+        Property { name: "managerName"; type: "string"; isReadonly: true }
+        Property { name: "availableManagers"; type: "QStringList"; isReadonly: true }
+        Property { name: "autoUpdate"; type: "bool" }
+        Property { name: "startPeriod"; type: "QDateTime" }
+        Property { name: "endPeriod"; type: "QDateTime" }
+        Property { name: "filter"; type: "QDeclarativeOrganizerItemFilter"; isPointer: true }
+        Property { name: "fetchHint"; type: "QDeclarativeOrganizerItemFetchHint"; isPointer: true }
+        Property {
+            name: "sortOrders"
+            type: "QDeclarativeOrganizerItemSortOrder"
+            isList: true
+            isReadonly: true
+        }
+        Property { name: "items"; type: "QDeclarativeOrganizerItem"; isList: true; isReadonly: true }
+        Property {
+            name: "occurrences"
+            type: "QDeclarativeOrganizerItem"
+            isList: true
+            isReadonly: true
+        }
+        Property { name: "events"; type: "QDeclarativeOrganizerItem"; isList: true; isReadonly: true }
+        Property {
+            name: "eventOccurrences"
+            type: "QDeclarativeOrganizerItem"
+            isList: true
+            isReadonly: true
+        }
+        Property { name: "todos"; type: "QDeclarativeOrganizerItem"; isList: true; isReadonly: true }
+        Property {
+            name: "todoOccurrences"
+            type: "QDeclarativeOrganizerItem"
+            isList: true
+            isReadonly: true
+        }
+        Property { name: "journals"; type: "QDeclarativeOrganizerItem"; isList: true; isReadonly: true }
+        Property { name: "notes"; type: "QDeclarativeOrganizerItem"; isList: true; isReadonly: true }
+        Property { name: "error"; type: "string"; isReadonly: true }
+        Property { name: "itemCount"; type: "int"; isReadonly: true }
+        Signal { name: "managerChanged" }
+        Signal { name: "availableManagersChanged" }
+        Signal { name: "filterChanged" }
+        Signal { name: "fetchHintChanged" }
+        Signal { name: "modelChanged" }
+        Signal { name: "sortOrdersChanged" }
+        Signal { name: "errorChanged" }
+        Signal { name: "startPeriodChanged" }
+        Signal { name: "endPeriodChanged" }
+        Signal { name: "autoUpdateChanged" }
+        Method { name: "update" }
+        Method { name: "cancelUpdate" }
+        Method {
+            name: "exportItems"
+            Parameter { name: "url"; type: "QUrl" }
+            Parameter { name: "profiles"; type: "QStringList" }
+        }
+        Method {
+            name: "exportItems"
+            Parameter { name: "url"; type: "QUrl" }
+        }
+        Method {
+            name: "importItems"
+            Parameter { name: "url"; type: "QUrl" }
+            Parameter { name: "profiles"; type: "QStringList" }
+        }
+        Method {
+            name: "importItems"
+            Parameter { name: "url"; type: "QUrl" }
+        }
+        Method {
+            name: "removeItem"
+            Parameter { name: "id"; type: "string" }
+        }
+        Method {
+            name: "removeItems"
+            Parameter { name: "ids"; type: "QList<QString>" }
+        }
+        Method {
+            name: "saveItem"
+            Parameter { name: "item"; type: "QDeclarativeOrganizerItem"; isPointer: true }
+        }
+        Method {
+            name: "fetchItems"
+            Parameter { name: "ids"; type: "QList<QString>" }
+        }
+        Method {
+            name: "containsItems"
+            type: "bool"
+            Parameter { name: "start"; type: "QDateTime" }
+            Parameter { name: "end"; type: "QDateTime" }
+        }
+        Method {
+            name: "containsItems"
+            type: "bool"
+            Parameter { name: "start"; type: "QDateTime" }
+        }
+        Method {
+            name: "item"
+            type: "QDeclarativeOrganizerItem*"
+            Parameter { name: "id"; type: "string" }
+        }
+        Method {
+            name: "itemIds"
+            type: "QStringList"
+            Parameter { name: "start"; type: "QDateTime" }
+            Parameter { name: "end"; type: "QDateTime" }
+        }
+        Method {
+            name: "itemIds"
+            type: "QStringList"
+            Parameter { name: "start"; type: "QDateTime" }
+        }
+        Method { name: "itemIds"; type: "QStringList" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerNote"
+        defaultProperty: "details"
+        prototype: "QDeclarativeOrganizerItem"
+        exports: [
+            "QtMobility.organizer/Note 1.1"
+        ]
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerRecurrenceRule"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.organizer/RecurrenceRule 1.1"
+        ]
+        Enum {
+            name: "Frequency"
+            values: {
+                "Invalid": 0,
+                "Daily": 1,
+                "Weekly": 2,
+                "Monthly": 3,
+                "Yearly": 4
+            }
+        }
+        Enum {
+            name: "Month"
+            values: {
+                "January": 1,
+                "February": 2,
+                "March": 3,
+                "April": 4,
+                "May": 5,
+                "June": 6,
+                "July": 7,
+                "August": 8,
+                "September": 9,
+                "October": 10,
+                "November": 11,
+                "December": 12
+            }
+        }
+        Property { name: "frequency"; type: "Frequency" }
+        Property { name: "limit"; type: "QVariant" }
+        Property { name: "interval"; type: "int" }
+        Property { name: "daysOfWeek"; type: "QVariantList" }
+        Property { name: "daysOfMonth"; type: "QVariantList" }
+        Property { name: "daysOfYear"; type: "QVariantList" }
+        Property { name: "monthsOfYear"; type: "QVariantList" }
+        Property { name: "positions"; type: "QVariantList" }
+        Property { name: "firstDayOfWeek"; type: "Qt::DayOfWeek" }
+        Signal { name: "recurrenceRuleChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerTodo"
+        defaultProperty: "details"
+        prototype: "QDeclarativeOrganizerItem"
+        exports: [
+            "QtMobility.organizer/Todo 1.1"
+        ]
+        Property { name: "startDateTime"; type: "QDateTime" }
+        Property { name: "dueDateTime"; type: "QDateTime" }
+        Property { name: "isAllDay"; type: "bool" }
+        Property { name: "priority"; type: "QDeclarativeOrganizerItemPriority::PriorityType" }
+        Property { name: "progressPercentage"; type: "int" }
+        Property { name: "status"; type: "QDeclarativeOrganizerTodoProgress::StatusType" }
+        Property { name: "finishedDateTime"; type: "QDateTime" }
+        Property {
+            name: "recurrence"
+            type: "QDeclarativeOrganizerItemRecurrence"
+            isReadonly: true
+            isPointer: true
+        }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerTodoOccurrence"
+        defaultProperty: "details"
+        prototype: "QDeclarativeOrganizerItem"
+        exports: [
+            "QtMobility.organizer/TodoOccurrence 1.1"
+        ]
+        Property { name: "startDateTime"; type: "QDateTime" }
+        Property { name: "dueDateTime"; type: "QDateTime" }
+        Property { name: "priority"; type: "QDeclarativeOrganizerItemPriority::PriorityType" }
+        Property { name: "progressPercentage"; type: "int" }
+        Property { name: "status"; type: "QDeclarativeOrganizerTodoProgress::StatusType" }
+        Property { name: "finishedDateTime"; type: "QDateTime" }
+        Property { name: "parentId"; type: "string" }
+        Property { name: "originalDate"; type: "QDate" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerTodoProgress"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/TodoProgress 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "Status": 0,
+                "Percentage": 1,
+                "FinishedDateTime": 2
+            }
+        }
+        Enum {
+            name: "StatusType"
+            values: {
+                "NotStarted": 0,
+                "InProgress": 1,
+                "Complete": 2
+            }
+        }
+        Property { name: "status"; type: "StatusType" }
+        Property { name: "percentage"; type: "int" }
+        Property { name: "finishedDateTime"; type: "QDateTime" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativeOrganizerTodoTime"
+        prototype: "QDeclarativeOrganizerItemDetail"
+        exports: [
+            "QtMobility.organizer/TodoTime 1.1"
+        ]
+        Enum {
+            name: "FieldType"
+            values: {
+                "AllDay": 0,
+                "StartDateTime": 1,
+                "DueDateTime": 2
+            }
+        }
+        Property { name: "allDay"; type: "bool" }
+        Property { name: "startDateTime"; type: "QDateTime" }
+        Property { name: "dueDateTime"; type: "QDateTime" }
+        Signal { name: "valueChanged" }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-publishsubscribe.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-publishsubscribe.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..9612c8614daf4975978fd347d611ce274412fe06
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-publishsubscribe.qmltypes
@@ -0,0 +1,17 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QValueSpaceSubscriber"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.publishsubscribe/ValueSpaceSubscriber 1.1"
+        ]
+        Property { name: "path"; type: "string" }
+        Property { name: "value"; type: "QVariant"; isReadonly: true }
+        Signal { name: "contentsChanged" }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-sensors.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-sensors.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..ac11991cadee317d856e42272f10b52ba46117f4
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-sensors.qmltypes
@@ -0,0 +1,205 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QAccelerometer"
+        prototype: "QSensor"
+        exports: [
+            "QtMobility.sensors/Accelerometer 1.1"
+        ]
+    }
+    Component {
+        name: "QAccelerometerReading"
+        prototype: "QSensorReading"
+        exports: [
+            "QtMobility.sensors/AccelerometerReading 1.1"
+        ]
+        Property { name: "x"; type: "qreal"; isReadonly: true }
+        Property { name: "y"; type: "qreal"; isReadonly: true }
+        Property { name: "z"; type: "qreal"; isReadonly: true }
+    }
+    Component {
+        name: "QAmbientLightReading"
+        prototype: "QSensorReading"
+        exports: [
+            "QtMobility.sensors/AmbientLightReading 1.1"
+        ]
+        Enum {
+            name: "LightLevel"
+            values: {
+                "Undefined": 0,
+                "Dark": 1,
+                "Twilight": 2,
+                "Light": 3,
+                "Bright": 4,
+                "Sunny": 5
+            }
+        }
+        Property { name: "lightLevel"; type: "LightLevel"; isReadonly: true }
+    }
+    Component {
+        name: "QAmbientLightSensor"
+        prototype: "QSensor"
+        exports: [
+            "QtMobility.sensors/AmbientLightSensor 1.1"
+        ]
+    }
+    Component {
+        name: "QCompass"
+        prototype: "QSensor"
+        exports: [
+            "QtMobility.sensors/Compass 1.1"
+        ]
+    }
+    Component {
+        name: "QCompassReading"
+        prototype: "QSensorReading"
+        exports: [
+            "QtMobility.sensors/CompassReading 1.1"
+        ]
+        Property { name: "azimuth"; type: "qreal"; isReadonly: true }
+        Property { name: "calibrationLevel"; type: "qreal"; isReadonly: true }
+    }
+    Component {
+        name: "QMagnetometer"
+        prototype: "QSensor"
+        exports: [
+            "QtMobility.sensors/Magnetometer 1.1"
+        ]
+    }
+    Component {
+        name: "QMagnetometerReading"
+        prototype: "QSensorReading"
+        exports: [
+            "QtMobility.sensors/MagnetometerReading 1.1"
+        ]
+        Property { name: "x"; type: "qreal"; isReadonly: true }
+        Property { name: "y"; type: "qreal"; isReadonly: true }
+        Property { name: "z"; type: "qreal"; isReadonly: true }
+        Property { name: "calibrationLevel"; type: "qreal"; isReadonly: true }
+    }
+    Component {
+        name: "QOrientationReading"
+        prototype: "QSensorReading"
+        exports: [
+            "QtMobility.sensors/OrientationReading 1.1"
+        ]
+        Enum {
+            name: "Orientation"
+            values: {
+                "Undefined": 0,
+                "TopUp": 1,
+                "TopDown": 2,
+                "LeftUp": 3,
+                "RightUp": 4,
+                "FaceUp": 5,
+                "FaceDown": 6
+            }
+        }
+        Property { name: "orientation"; type: "Orientation"; isReadonly: true }
+    }
+    Component {
+        name: "QOrientationSensor"
+        prototype: "QSensor"
+        exports: [
+            "QtMobility.sensors/OrientationSensor 1.1"
+        ]
+    }
+    Component {
+        name: "QProximityReading"
+        prototype: "QSensorReading"
+        exports: [
+            "QtMobility.sensors/ProximityReading 1.1"
+        ]
+        Property { name: "close"; type: "bool"; isReadonly: true }
+    }
+    Component {
+        name: "QProximitySensor"
+        prototype: "QSensor"
+        exports: [
+            "QtMobility.sensors/ProximitySensor 1.1"
+        ]
+    }
+    Component {
+        name: "QRotationReading"
+        prototype: "QSensorReading"
+        exports: [
+            "QtMobility.sensors/RotationReading 1.1"
+        ]
+        Property { name: "x"; type: "qreal"; isReadonly: true }
+        Property { name: "y"; type: "qreal"; isReadonly: true }
+        Property { name: "z"; type: "qreal"; isReadonly: true }
+    }
+    Component {
+        name: "QRotationSensor"
+        prototype: "QSensor"
+        exports: [
+            "QtMobility.sensors/RotationSensor 1.1"
+        ]
+    }
+    Component {
+        name: "QSensor"
+        prototype: "QObject"
+        Property { name: "sensorid"; type: "QByteArray" }
+        Property { name: "type"; type: "QByteArray"; isReadonly: true }
+        Property { name: "connectedToBackend"; type: "bool"; isReadonly: true }
+        Property { name: "availableDataRates"; type: "QtMobility::qrangelist"; isReadonly: true }
+        Property { name: "dataRate"; type: "int" }
+        Property { name: "reading"; type: "QSensorReading"; isReadonly: true; isPointer: true }
+        Property { name: "busy"; type: "bool"; isReadonly: true }
+        Property { name: "active"; type: "bool" }
+        Property { name: "outputRanges"; type: "QtMobility::qoutputrangelist"; isReadonly: true }
+        Property { name: "outputRange"; type: "int" }
+        Property { name: "description"; type: "string"; isReadonly: true }
+        Property { name: "error"; type: "int"; isReadonly: true }
+        Signal { name: "busyChanged" }
+        Signal { name: "activeChanged" }
+        Signal { name: "readingChanged" }
+        Signal {
+            name: "sensorError"
+            Parameter { name: "error"; type: "int" }
+        }
+        Method { name: "start"; type: "bool" }
+        Method { name: "stop" }
+        Method { name: "connectToBackend"; type: "bool" }
+    }
+    Component {
+        name: "QSensorReading"
+        prototype: "QObject"
+        Property { name: "timestamp"; type: "QtMobility::qtimestamp"; isReadonly: true }
+    }
+    Component {
+        name: "QTapReading"
+        prototype: "QSensorReading"
+        exports: [
+            "QtMobility.sensors/TapReading 1.1"
+        ]
+        Enum {
+            name: "TapDirection"
+            values: {
+                "Undefined": 0,
+                "X": 1,
+                "Y": 2,
+                "Z": 4,
+                "X_Pos": 17,
+                "Y_Pos": 34,
+                "Z_Pos": 68,
+                "X_Neg": 257,
+                "Y_Neg": 514,
+                "Z_Neg": 1028
+            }
+        }
+        Property { name: "tapDirection"; type: "TapDirection"; isReadonly: true }
+        Property { name: "doubleTap"; type: "bool"; isReadonly: true }
+    }
+    Component {
+        name: "QTapSensor"
+        prototype: "QSensor"
+        exports: [
+            "QtMobility.sensors/TapSensor 1.1"
+        ]
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-serviceframework.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-serviceframework.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..0d74d7750b97f042a04adbd12d1859e39c9b5b0d
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-serviceframework.qmltypes
@@ -0,0 +1,55 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QDeclarativeService"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.serviceframework/Service 1.1"
+        ]
+        Property { name: "interfaceName"; type: "string" }
+        Property { name: "serviceName"; type: "string"; isReadonly: true }
+        Property { name: "majorVersion"; type: "int"; isReadonly: true }
+        Property { name: "minorVersion"; type: "int"; isReadonly: true }
+        Property { name: "valid"; type: "bool"; isReadonly: true }
+        Property { name: "serviceObject"; type: "QObject"; isReadonly: true; isPointer: true }
+        Signal { name: "validChanged" }
+        Signal { name: "serviceObjectChanged" }
+        Signal { name: "interfaceNameChanged" }
+        Signal { name: "serviceNameChanged" }
+        Signal { name: "majorVersionChanged" }
+        Signal { name: "minorVersionChanged" }
+    }
+    Component {
+        name: "QDeclarativeServiceList"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.serviceframework/ServiceList 1.1"
+        ]
+        Enum {
+            name: "MatchRule"
+            values: {
+                "Minimum": 0,
+                "Exact": 1
+            }
+        }
+        Property { name: "serviceName"; type: "string" }
+        Property { name: "interfaceName"; type: "string" }
+        Property { name: "majorVersion"; type: "int" }
+        Property { name: "minorVersion"; type: "int" }
+        Property { name: "services"; type: "QDeclarativeService"; isList: true; isReadonly: true }
+        Property { name: "versionMatch"; type: "MatchRule" }
+        Signal {
+            name: "servicesChanged"
+            Parameter { type: "QDeclarativeService"; isList: true }
+        }
+        Signal { name: "serviceNameChanged" }
+        Signal { name: "interfaceNameChanged" }
+        Signal { name: "minorVersionChanged" }
+        Signal { name: "majorVersionChanged" }
+        Signal { name: "versionMatchChanged" }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmobility-systeminfo.qmltypes b/share/qtcreator/qml-type-descriptions/qtmobility-systeminfo.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..d271fd216828aa87251edcee394dbde536a2937e
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmobility-systeminfo.qmltypes
@@ -0,0 +1,382 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QDeclarativeDeviceInfo"
+        prototype: "QSystemDeviceInfo"
+        exports: [
+            "QtMobility.systeminfo/DeviceInfo 1.1"
+        ]
+        Signal {
+            name: "batteryLevelChanged"
+            Parameter { name: "level"; type: "int" }
+        }
+        Signal {
+            name: "batteryStatusChanged"
+            Parameter { name: "batteryStatus"; type: "QSystemDeviceInfo::BatteryStatus" }
+        }
+        Signal {
+            name: "powerStateChanged"
+            Parameter { name: "powerState"; type: "QSystemDeviceInfo::PowerState" }
+        }
+        Signal {
+            name: "currentProfileChanged"
+            Parameter { name: "currentProfile"; type: "QSystemDeviceInfo::Profile" }
+        }
+        Signal {
+            name: "bluetoothStateChanged"
+            Parameter { name: "on"; type: "bool" }
+        }
+        Method { name: "startBatteryLevelChanged" }
+        Method { name: "startBatteryStatusChanged" }
+        Method { name: "startPowerStateChanged" }
+        Method { name: "startCurrentProfileChanged" }
+        Method { name: "startBluetoothStateChanged" }
+    }
+    Component {
+        name: "QDeclarativeGeneralInfo"
+        prototype: "QSystemInfo"
+        exports: [
+            "QtMobility.systeminfo/GeneralInfo 1.1"
+        ]
+        Signal {
+            name: "currentLanguageChanged"
+            Parameter { name: "language"; type: "string" }
+        }
+        Method { name: "startCurrentLanguageChanged" }
+    }
+    Component {
+        name: "QDeclarativeNetworkInfo"
+        prototype: "QSystemNetworkInfo"
+        exports: [
+            "QtMobility.systeminfo/NetworkInfo 1.1"
+        ]
+        Property { name: "networkStatus"; type: "string"; isReadonly: true }
+        Property { name: "networkName"; type: "string"; isReadonly: true }
+        Property { name: "networkSignalStrength"; type: "int"; isReadonly: true }
+        Property { name: "macAddress"; type: "string"; isReadonly: true }
+        Property { name: "mode"; type: "QSystemNetworkInfo::NetworkMode" }
+        Property {
+            name: "availableModes"
+            type: "QList<QSystemNetworkInfo::NetworkMode>"
+            isReadonly: true
+        }
+        Signal {
+            name: "statusChanged"
+            Parameter { name: "newStatus"; type: "string" }
+        }
+        Signal {
+            name: "signalStrengthChanged"
+            Parameter { name: "strength"; type: "int" }
+        }
+        Signal {
+            name: "nameChanged"
+            Parameter { name: "name"; type: "string" }
+        }
+        Signal { name: "modeChanged" }
+        Signal {
+            name: "currentMobileCountryCodeChanged"
+            Parameter { name: "newMcc"; type: "string" }
+        }
+        Signal {
+            name: "currentMobileNetworkCodeChanged"
+            Parameter { name: "newMnc"; type: "string" }
+        }
+        Method { name: "interfaceForMode"; type: "QNetworkInterface" }
+        Method { name: "startStatusChanged" }
+        Method { name: "startSignalStrengthChanged" }
+        Method { name: "startNameChanged" }
+        Method { name: "startModeChanged" }
+        Method { name: "startCurrentMobileCountryCodeChanged" }
+        Method { name: "startCurrentMobileNetworkCodeChanged" }
+        Method { name: "availableModes"; type: "QList<QSystemNetworkInfo::NetworkMode>" }
+    }
+    Component {
+        name: "QDeclarativeScreenSaver"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.systeminfo/ScreenSaver 1.1"
+        ]
+        Property { name: "screenSaverDelayed"; type: "bool" }
+        Property { name: "screenSaverInhibited"; type: "bool"; isReadonly: true }
+        Method {
+            name: "setScreenSaverDelayed"
+            Parameter { name: "on"; type: "bool" }
+        }
+        Method { name: "setScreenSaverInhibit"; type: "bool" }
+    }
+    Component {
+        name: "QSystemDeviceInfo"
+        prototype: "QObject"
+        Enum {
+            name: "BatteryStatus"
+            values: {
+                "NoBatteryLevel": 0,
+                "BatteryCritical": 1,
+                "BatteryVeryLow": 2,
+                "BatteryLow": 3,
+                "BatteryNormal": 4
+            }
+        }
+        Enum {
+            name: "PowerState"
+            values: {
+                "UnknownPower": 0,
+                "BatteryPower": 1,
+                "WallPower": 2,
+                "WallPowerChargingBattery": 3
+            }
+        }
+        Enum {
+            name: "InputMethod"
+            values: {
+                "Keys": 1,
+                "Keypad": 2,
+                "Keyboard": 4,
+                "SingleTouch": 8,
+                "MultiTouch": 16,
+                "Mouse": 32
+            }
+        }
+        Enum {
+            name: "InputMethodFlags"
+            values: {
+                "Keys": 1,
+                "Keypad": 2,
+                "Keyboard": 4,
+                "SingleTouch": 8,
+                "MultiTouch": 16,
+                "Mouse": 32
+            }
+        }
+        Enum {
+            name: "Profile"
+            values: {
+                "UnknownProfile": 0,
+                "SilentProfile": 1,
+                "NormalProfile": 2,
+                "LoudProfile": 3,
+                "VibProfile": 4,
+                "OfflineProfile": 5,
+                "PowersaveProfile": 6,
+                "CustomProfile": 7,
+                "BeepProfile": 8
+            }
+        }
+        Enum {
+            name: "SimStatus"
+            values: {
+                "SimNotAvailable": 0,
+                "SingleSimAvailable": 1,
+                "DualSimAvailable": 2,
+                "SimLocked": 3
+            }
+        }
+        Property { name: "currentProfile"; type: "Profile"; isReadonly: true }
+        Property { name: "powerState"; type: "PowerState"; isReadonly: true }
+        Property { name: "simStatus"; type: "SimStatus"; isReadonly: true }
+        Property { name: "batteryStatus"; type: "BatteryStatus"; isReadonly: true }
+        Property { name: "inputMethodType"; type: "InputMethodFlags"; isReadonly: true }
+        Property { name: "imei"; type: "string"; isReadonly: true }
+        Property { name: "imsi"; type: "string"; isReadonly: true }
+        Property { name: "manufacturer"; type: "string"; isReadonly: true }
+        Property { name: "model"; type: "string"; isReadonly: true }
+        Property { name: "productName"; type: "string"; isReadonly: true }
+        Property { name: "batteryLevel"; type: "int"; isReadonly: true }
+        Property { name: "isDeviceLocked"; type: "bool"; isReadonly: true }
+        Property { name: "currentBluetoothPowerState"; type: "bool"; isReadonly: true }
+        Property { name: "currentPowerState"; type: "QSystemDeviceInfo::PowerState"; isReadonly: true }
+        Signal {
+            name: "batteryLevelChanged"
+            Parameter { name: "level"; type: "int" }
+        }
+        Signal {
+            name: "batteryStatusChanged"
+            Parameter { name: "batteryStatus"; type: "QSystemDeviceInfo::BatteryStatus" }
+        }
+        Signal {
+            name: "powerStateChanged"
+            Parameter { name: "powerState"; type: "QSystemDeviceInfo::PowerState" }
+        }
+        Signal {
+            name: "currentProfileChanged"
+            Parameter { name: "currentProfile"; type: "QSystemDeviceInfo::Profile" }
+        }
+        Signal {
+            name: "bluetoothStateChanged"
+            Parameter { name: "on"; type: "bool" }
+        }
+    }
+    Component {
+        name: "QSystemDisplayInfo"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.systeminfo/DisplayInfo 1.1"
+        ]
+    }
+    Component {
+        name: "QSystemInfo"
+        prototype: "QObject"
+        Enum {
+            name: "Version"
+            values: {
+                "Os": 1,
+                "QtCore": 2,
+                "Firmware": 3,
+                "QtMobility": 4
+            }
+        }
+        Enum {
+            name: "Feature"
+            values: {
+                "BluetoothFeature": 0,
+                "CameraFeature": 1,
+                "FmradioFeature": 2,
+                "IrFeature": 3,
+                "LedFeature": 4,
+                "MemcardFeature": 5,
+                "UsbFeature": 6,
+                "VibFeature": 7,
+                "WlanFeature": 8,
+                "SimFeature": 9,
+                "LocationFeature": 10,
+                "VideoOutFeature": 11,
+                "HapticsFeature": 12
+            }
+        }
+        Property { name: "currentLanguage"; type: "string"; isReadonly: true }
+        Property { name: "availableLanguages"; type: "QStringList"; isReadonly: true }
+        Property { name: "currentCountryCode"; type: "string"; isReadonly: true }
+        Signal {
+            name: "currentLanguageChanged"
+            Parameter { type: "string" }
+        }
+    }
+    Component {
+        name: "QSystemNetworkInfo"
+        prototype: "QObject"
+        Enum {
+            name: "NetworkStatus"
+            values: {
+                "UndefinedStatus": 0,
+                "NoNetworkAvailable": 1,
+                "EmergencyOnly": 2,
+                "Searching": 3,
+                "Busy": 4,
+                "Connected": 5,
+                "HomeNetwork": 6,
+                "Denied": 7,
+                "Roaming": 8
+            }
+        }
+        Enum {
+            name: "NetworkMode"
+            values: {
+                "UnknownMode": 0,
+                "GsmMode": 1,
+                "CdmaMode": 2,
+                "WcdmaMode": 3,
+                "WlanMode": 4,
+                "EthernetMode": 5,
+                "BluetoothMode": 6,
+                "WimaxMode": 7
+            }
+        }
+        Property { name: "cellId"; type: "int"; isReadonly: true }
+        Property { name: "locationAreaCode"; type: "int"; isReadonly: true }
+        Property { name: "currentMobileCountryCode"; type: "string"; isReadonly: true }
+        Property { name: "currentMobileNetworkCode"; type: "string"; isReadonly: true }
+        Property { name: "homeMobileCountryCode"; type: "string"; isReadonly: true }
+        Property { name: "homeMobileNetworkCode"; type: "string"; isReadonly: true }
+        Property { name: "currentMode"; type: "QSystemNetworkInfo::NetworkMode"; isReadonly: true }
+        Signal {
+            name: "networkStatusChanged"
+            Parameter { type: "QSystemNetworkInfo::NetworkMode" }
+            Parameter { type: "QSystemNetworkInfo::NetworkStatus" }
+        }
+        Signal {
+            name: "networkSignalStrengthChanged"
+            Parameter { type: "QSystemNetworkInfo::NetworkMode" }
+            Parameter { type: "int" }
+        }
+        Signal {
+            name: "currentMobileCountryCodeChanged"
+            Parameter { type: "string" }
+        }
+        Signal {
+            name: "currentMobileNetworkCodeChanged"
+            Parameter { type: "string" }
+        }
+        Signal {
+            name: "networkNameChanged"
+            Parameter { type: "QSystemNetworkInfo::NetworkMode" }
+            Parameter { type: "string" }
+        }
+        Signal {
+            name: "networkModeChanged"
+            Parameter { type: "QSystemNetworkInfo::NetworkMode" }
+        }
+        Method {
+            name: "networkStatus"
+            type: "QSystemNetworkInfo::NetworkStatus"
+            Parameter { name: "mode"; type: "QSystemNetworkInfo::NetworkMode" }
+        }
+        Method {
+            name: "networkSignalStrength"
+            type: "int"
+            Parameter { name: "mode"; type: "QSystemNetworkInfo::NetworkMode" }
+        }
+        Method {
+            name: "macAddress"
+            type: "string"
+            Parameter { name: "mode"; type: "QSystemNetworkInfo::NetworkMode" }
+        }
+        Method { name: "currentMode"; type: "QSystemNetworkInfo::NetworkMode" }
+        Method {
+            name: "networkName"
+            type: "string"
+            Parameter { name: "mode"; type: "QSystemNetworkInfo::NetworkMode" }
+        }
+    }
+    Component {
+        name: "QSystemStorageInfo"
+        prototype: "QObject"
+        exports: [
+            "QtMobility.systeminfo/StorageInfo 1.1"
+        ]
+        Enum {
+            name: "DriveType"
+            values: {
+                "NoDrive": 0,
+                "InternalDrive": 1,
+                "RemovableDrive": 2,
+                "RemoteDrive": 3,
+                "CdromDrive": 4
+            }
+        }
+        Property { name: "logicalDrives"; type: "QStringList"; isReadonly: true }
+        Signal {
+            name: "logicalDriveChanged"
+            Parameter { name: "added"; type: "bool" }
+            Parameter { name: "vol"; type: "string" }
+        }
+        Method {
+            name: "totalDiskSpace"
+            type: "qlonglong"
+            Parameter { name: "driveVolume"; type: "string" }
+        }
+        Method {
+            name: "availableDiskSpace"
+            type: "qlonglong"
+            Parameter { name: "driveVolume"; type: "string" }
+        }
+        Method {
+            name: "typeForDrive"
+            type: "QSystemStorageInfo::DriveType"
+            Parameter { name: "driveVolume"; type: "string" }
+        }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtmultimediakit.qmltypes b/share/qtcreator/qml-type-descriptions/qtmultimediakit.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..e42dfb8039d259f63d199ac1a2020c844af9ac2a
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtmultimediakit.qmltypes
@@ -0,0 +1,430 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QDeclarativeAudio"
+        prototype: "QObject"
+        exports: [
+            "QtMultimediaKit/Audio 1.1"
+        ]
+        Enum {
+            name: "Status"
+            values: {
+                "UnknownStatus": 0,
+                "NoMedia": 1,
+                "Loading": 2,
+                "Loaded": 3,
+                "Stalled": 4,
+                "Buffering": 5,
+                "Buffered": 6,
+                "EndOfMedia": 7,
+                "InvalidMedia": 8
+            }
+        }
+        Enum {
+            name: "Error"
+            values: {
+                "NoError": 0,
+                "ResourceError": 1,
+                "FormatError": 2,
+                "NetworkError": 3,
+                "AccessDenied": 4,
+                "ServiceMissing": 5
+            }
+        }
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "autoLoad"; type: "bool" }
+        Property { name: "playing"; type: "bool" }
+        Property { name: "paused"; type: "bool" }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "duration"; type: "int"; isReadonly: true }
+        Property { name: "position"; type: "int" }
+        Property { name: "volume"; type: "qreal" }
+        Property { name: "muted"; type: "bool" }
+        Property { name: "bufferProgress"; type: "int"; isReadonly: true }
+        Property { name: "seekable"; type: "bool"; isReadonly: true }
+        Property { name: "playbackRate"; type: "qreal" }
+        Property { name: "error"; type: "Error"; isReadonly: true }
+        Property { name: "errorString"; type: "string"; isReadonly: true }
+        Property {
+            name: "metaData"
+            type: "QDeclarativeMediaMetaData"
+            isReadonly: true
+            isPointer: true
+        }
+        Signal { name: "sourceChanged" }
+        Signal { name: "autoLoadChanged" }
+        Signal { name: "playingChanged" }
+        Signal { name: "pausedChanged" }
+        Signal { name: "started" }
+        Signal { name: "resumed" }
+        Signal { name: "paused" }
+        Signal { name: "stopped" }
+        Signal { name: "statusChanged" }
+        Signal { name: "durationChanged" }
+        Signal { name: "positionChanged" }
+        Signal { name: "volumeChanged" }
+        Signal { name: "mutedChanged" }
+        Signal { name: "bufferProgressChanged" }
+        Signal { name: "seekableChanged" }
+        Signal { name: "playbackRateChanged" }
+        Signal { name: "errorChanged" }
+        Signal {
+            name: "error"
+            Parameter { name: "error"; type: "QDeclarativeAudio::Error" }
+            Parameter { name: "errorString"; type: "string" }
+        }
+        Method { name: "play" }
+        Method { name: "pause" }
+        Method { name: "stop" }
+    }
+    Component {
+        name: "QDeclarativeCamera"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "QtMultimediaKit/Camera 1.1"
+        ]
+        Enum {
+            name: "State"
+            values: {
+                "ActiveState": 2,
+                "LoadedState": 1,
+                "UnloadedState": 0
+            }
+        }
+        Enum {
+            name: "LockStatus"
+            values: {
+                "Unlocked": 0,
+                "Searching": 1,
+                "Locked": 2
+            }
+        }
+        Enum {
+            name: "Error"
+            values: {
+                "NoError": 0,
+                "CameraError": 1,
+                "InvalidRequestError": 2,
+                "ServiceMissingError": 3,
+                "NotSupportedFeatureError": 4
+            }
+        }
+        Enum {
+            name: "FlashMode"
+            values: {
+                "FlashAuto": 1,
+                "FlashOff": 2,
+                "FlashOn": 4,
+                "FlashRedEyeReduction": 8,
+                "FlashFill": 16,
+                "FlashTorch": 32,
+                "FlashSlowSyncFrontCurtain": 64,
+                "FlashSlowSyncRearCurtain": 128,
+                "FlashManual": 256
+            }
+        }
+        Enum {
+            name: "ExposureMode"
+            values: {
+                "ExposureAuto": 0,
+                "ExposureManual": 1,
+                "ExposurePortrait": 2,
+                "ExposureNight": 3,
+                "ExposureBacklight": 4,
+                "ExposureSpotlight": 5,
+                "ExposureSports": 6,
+                "ExposureSnow": 7,
+                "ExposureBeach": 8,
+                "ExposureLargeAperture": 9,
+                "ExposureSmallAperture": 10,
+                "ExposureModeVendor": 1000
+            }
+        }
+        Enum {
+            name: "WhiteBalanceMode"
+            values: {
+                "WhiteBalanceAuto": 0,
+                "WhiteBalanceManual": 1,
+                "WhiteBalanceSunlight": 2,
+                "WhiteBalanceCloudy": 3,
+                "WhiteBalanceShade": 4,
+                "WhiteBalanceTungsten": 5,
+                "WhiteBalanceFluorescent": 6,
+                "WhiteBalanceIncandescent": 7,
+                "WhiteBalanceFlash": 8,
+                "WhiteBalanceSunset": 9,
+                "WhiteBalanceVendor": 1000
+            }
+        }
+        Property { name: "cameraState"; type: "State" }
+        Property { name: "lockStatus"; type: "LockStatus"; isReadonly: true }
+        Property { name: "errorString"; type: "string"; isReadonly: true }
+        Property { name: "capturedImagePath"; type: "string"; isReadonly: true }
+        Property { name: "iso"; type: "int" }
+        Property { name: "shutterSpeed"; type: "qreal"; isReadonly: true }
+        Property { name: "aperture"; type: "qreal"; isReadonly: true }
+        Property { name: "exposureCompensation"; type: "qreal" }
+        Property { name: "exposureMode"; type: "ExposureMode" }
+        Property { name: "flashMode"; type: "int" }
+        Property { name: "whiteBalanceMode"; type: "WhiteBalanceMode" }
+        Property { name: "manualWhiteBalance"; type: "int" }
+        Property { name: "captureResolution"; type: "QSize" }
+        Property { name: "opticalZoom"; type: "qreal" }
+        Property { name: "maximumOpticalZoom"; type: "qreal"; isReadonly: true }
+        Property { name: "digitalZoom"; type: "qreal" }
+        Property { name: "maximumDigitalZoom"; type: "qreal"; isReadonly: true }
+        Signal { name: "errorChanged" }
+        Signal {
+            name: "error"
+            Parameter { name: "error"; type: "QDeclarativeCamera::Error" }
+            Parameter { name: "errorString"; type: "string" }
+        }
+        Signal {
+            name: "cameraStateChanged"
+            Parameter { type: "QDeclarativeCamera::State" }
+        }
+        Signal { name: "lockStatusChanged" }
+        Signal {
+            name: "imageCaptured"
+            Parameter { name: "preview"; type: "string" }
+        }
+        Signal {
+            name: "imageSaved"
+            Parameter { name: "path"; type: "string" }
+        }
+        Signal {
+            name: "captureFailed"
+            Parameter { name: "message"; type: "string" }
+        }
+        Signal {
+            name: "isoSensitivityChanged"
+            Parameter { type: "int" }
+        }
+        Signal {
+            name: "apertureChanged"
+            Parameter { type: "qreal" }
+        }
+        Signal {
+            name: "shutterSpeedChanged"
+            Parameter { type: "qreal" }
+        }
+        Signal {
+            name: "exposureCompensationChanged"
+            Parameter { type: "qreal" }
+        }
+        Signal {
+            name: "exposureModeChanged"
+            Parameter { type: "QDeclarativeCamera::ExposureMode" }
+        }
+        Signal {
+            name: "flashModeChanged"
+            Parameter { type: "int" }
+        }
+        Signal {
+            name: "whiteBalanceModeChanged"
+            Parameter { type: "QDeclarativeCamera::WhiteBalanceMode" }
+        }
+        Signal {
+            name: "manualWhiteBalanceChanged"
+            Parameter { type: "int" }
+        }
+        Signal {
+            name: "captureResolutionChanged"
+            Parameter { type: "QSize" }
+        }
+        Signal {
+            name: "opticalZoomChanged"
+            Parameter { type: "qreal" }
+        }
+        Signal {
+            name: "digitalZoomChanged"
+            Parameter { type: "qreal" }
+        }
+        Signal {
+            name: "maximumOpticalZoomChanged"
+            Parameter { type: "qreal" }
+        }
+        Signal {
+            name: "maximumDigitalZoomChanged"
+            Parameter { type: "qreal" }
+        }
+        Method { name: "start" }
+        Method { name: "stop" }
+        Method {
+            name: "setCameraState"
+            Parameter { name: "state"; type: "State" }
+        }
+        Method { name: "searchAndLock" }
+        Method { name: "unlock" }
+        Method { name: "captureImage" }
+        Method {
+            name: "setFlashMode"
+            Parameter { type: "int" }
+        }
+        Method {
+            name: "setExposureMode"
+            Parameter { type: "QDeclarativeCamera::ExposureMode" }
+        }
+        Method {
+            name: "setExposureCompensation"
+            Parameter { name: "ev"; type: "qreal" }
+        }
+        Method {
+            name: "setManualIsoSensitivity"
+            Parameter { name: "iso"; type: "int" }
+        }
+        Method {
+            name: "setWhiteBalanceMode"
+            Parameter { name: "mode"; type: "QDeclarativeCamera::WhiteBalanceMode" }
+        }
+        Method {
+            name: "setManualWhiteBalance"
+            Parameter { name: "colorTemp"; type: "int" }
+        }
+        Method {
+            name: "setCaptureResolution"
+            Parameter { name: "size"; type: "QSize" }
+        }
+        Method {
+            name: "setOpticalZoom"
+            Parameter { type: "qreal" }
+        }
+        Method {
+            name: "setDigitalZoom"
+            Parameter { type: "qreal" }
+        }
+    }
+    Component {
+        name: "QDeclarativeVideo"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "QtMultimediaKit/Video 1.1"
+        ]
+        Enum {
+            name: "FillMode"
+            values: {
+                "Stretch": 0,
+                "PreserveAspectFit": 1,
+                "PreserveAspectCrop": 2
+            }
+        }
+        Enum {
+            name: "Status"
+            values: {
+                "UnknownStatus": 0,
+                "NoMedia": 1,
+                "Loading": 2,
+                "Loaded": 3,
+                "Stalled": 4,
+                "Buffering": 5,
+                "Buffered": 6,
+                "EndOfMedia": 7,
+                "InvalidMedia": 8
+            }
+        }
+        Enum {
+            name: "Error"
+            values: {
+                "NoError": 0,
+                "ResourceError": 1,
+                "FormatError": 2,
+                "NetworkError": 3,
+                "AccessDenied": 4,
+                "ServiceMissing": 5
+            }
+        }
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "autoLoad"; type: "bool" }
+        Property { name: "playing"; type: "bool" }
+        Property { name: "paused"; type: "bool" }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "duration"; type: "int"; isReadonly: true }
+        Property { name: "position"; type: "int" }
+        Property { name: "volume"; type: "qreal" }
+        Property { name: "muted"; type: "bool" }
+        Property { name: "hasAudio"; type: "bool"; isReadonly: true }
+        Property { name: "hasVideo"; type: "bool"; isReadonly: true }
+        Property { name: "bufferProgress"; type: "int"; isReadonly: true }
+        Property { name: "seekable"; type: "bool"; isReadonly: true }
+        Property { name: "playbackRate"; type: "qreal" }
+        Property { name: "error"; type: "Error"; isReadonly: true }
+        Property { name: "errorString"; type: "string"; isReadonly: true }
+        Property { name: "fillMode"; type: "FillMode" }
+        Property {
+            name: "metaData"
+            type: "QDeclarativeMediaMetaData"
+            isReadonly: true
+            isPointer: true
+        }
+        Signal { name: "sourceChanged" }
+        Signal { name: "autoLoadChanged" }
+        Signal { name: "playingChanged" }
+        Signal { name: "pausedChanged" }
+        Signal { name: "started" }
+        Signal { name: "resumed" }
+        Signal { name: "paused" }
+        Signal { name: "stopped" }
+        Signal { name: "statusChanged" }
+        Signal { name: "durationChanged" }
+        Signal { name: "positionChanged" }
+        Signal { name: "volumeChanged" }
+        Signal { name: "mutedChanged" }
+        Signal { name: "hasAudioChanged" }
+        Signal { name: "hasVideoChanged" }
+        Signal { name: "bufferProgressChanged" }
+        Signal { name: "seekableChanged" }
+        Signal { name: "playbackRateChanged" }
+        Signal { name: "errorChanged" }
+        Signal {
+            name: "error"
+            Parameter { name: "error"; type: "QDeclarativeVideo::Error" }
+            Parameter { name: "errorString"; type: "string" }
+        }
+        Method { name: "play" }
+        Method { name: "pause" }
+        Method { name: "stop" }
+    }
+    Component {
+        name: "QSoundEffect"
+        prototype: "QObject"
+        exports: [
+            "QtMultimediaKit/SoundEffect 1.1"
+        ]
+        Enum {
+            name: "Loop"
+            values: {
+                "Infinite": -2
+            }
+        }
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Loading": 1,
+                "Ready": 2,
+                "Error": 3
+            }
+        }
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "loops"; type: "int" }
+        Property { name: "volume"; type: "qreal" }
+        Property { name: "muted"; type: "bool" }
+        Property { name: "playing"; type: "bool"; isReadonly: true }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Signal { name: "sourceChanged" }
+        Signal { name: "loopCountChanged" }
+        Signal { name: "volumeChanged" }
+        Signal { name: "mutedChanged" }
+        Signal { name: "loadedChanged" }
+        Signal { name: "playingChanged" }
+        Signal { name: "statusChanged" }
+        Method { name: "play" }
+        Method { name: "stop" }
+    }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtquick.qmltypes b/share/qtcreator/qml-type-descriptions/qtquick.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..1b140c719db123055d4ac5e4336b789fe35ff961
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtquick.qmltypes
@@ -0,0 +1,4216 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QDeclarativeAbstractAnimation"
+        prototype: "QObject"
+        exports: [
+            "Qt/Animation 4.7",
+            "QtQuick/Animation 1.0"
+        ]
+        Enum {
+            name: "Loops"
+            values: {
+                "Infinite": -2
+            }
+        }
+        Property { name: "running"; type: "bool" }
+        Property { name: "paused"; type: "bool" }
+        Property { name: "alwaysRunToEnd"; type: "bool" }
+        Property { name: "loops"; type: "int" }
+        Signal { name: "started" }
+        Signal { name: "completed" }
+        Signal {
+            name: "runningChanged"
+            Parameter { type: "bool" }
+        }
+        Signal {
+            name: "pausedChanged"
+            Parameter { type: "bool" }
+        }
+        Signal {
+            name: "alwaysRunToEndChanged"
+            Parameter { type: "bool" }
+        }
+        Signal {
+            name: "loopCountChanged"
+            Parameter { type: "int" }
+        }
+        Method { name: "restart" }
+        Method { name: "start" }
+        Method { name: "pause" }
+        Method { name: "resume" }
+        Method { name: "stop" }
+        Method { name: "complete" }
+    }
+    Component {
+        name: "QDeclarativeAnchorAnimation"
+        prototype: "QDeclarativeAbstractAnimation"
+        exports: [
+            "Qt/AnchorAnimation 4.7",
+            "QtQuick/AnchorAnimation 1.0"
+        ]
+        Property { name: "targets"; type: "QDeclarativeItem"; isList: true; isReadonly: true }
+        Property { name: "duration"; type: "int" }
+        Property { name: "easing"; type: "QEasingCurve" }
+        Signal {
+            name: "durationChanged"
+            Parameter { type: "int" }
+        }
+        Signal {
+            name: "easingChanged"
+            Parameter { type: "QEasingCurve" }
+        }
+    }
+    Component {
+        name: "QDeclarativeAnchorChanges"
+        prototype: "QDeclarativeStateOperation"
+        exports: [
+            "Qt/AnchorChanges 4.7",
+            "QtQuick/AnchorChanges 1.0"
+        ]
+        Property { name: "target"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "anchors"; type: "QDeclarativeAnchorSet"; isReadonly: true; isPointer: true }
+    }
+    Component {
+        name: "QDeclarativeAnchorSet"
+        prototype: "QObject"
+        Property { name: "left"; type: "QDeclarativeScriptString" }
+        Property { name: "right"; type: "QDeclarativeScriptString" }
+        Property { name: "horizontalCenter"; type: "QDeclarativeScriptString" }
+        Property { name: "top"; type: "QDeclarativeScriptString" }
+        Property { name: "bottom"; type: "QDeclarativeScriptString" }
+        Property { name: "verticalCenter"; type: "QDeclarativeScriptString" }
+        Property { name: "baseline"; type: "QDeclarativeScriptString" }
+    }
+    Component {
+        name: "QDeclarativeAnchors"
+        prototype: "QObject"
+        Property { name: "left"; type: "QDeclarativeAnchorLine" }
+        Property { name: "right"; type: "QDeclarativeAnchorLine" }
+        Property { name: "horizontalCenter"; type: "QDeclarativeAnchorLine" }
+        Property { name: "top"; type: "QDeclarativeAnchorLine" }
+        Property { name: "bottom"; type: "QDeclarativeAnchorLine" }
+        Property { name: "verticalCenter"; type: "QDeclarativeAnchorLine" }
+        Property { name: "baseline"; type: "QDeclarativeAnchorLine" }
+        Property { name: "margins"; type: "qreal" }
+        Property { name: "leftMargin"; type: "qreal" }
+        Property { name: "rightMargin"; type: "qreal" }
+        Property { name: "horizontalCenterOffset"; type: "qreal" }
+        Property { name: "topMargin"; type: "qreal" }
+        Property { name: "bottomMargin"; type: "qreal" }
+        Property { name: "verticalCenterOffset"; type: "qreal" }
+        Property { name: "baselineOffset"; type: "qreal" }
+        Property { name: "fill"; type: "QGraphicsObject"; isPointer: true }
+        Property { name: "centerIn"; type: "QGraphicsObject"; isPointer: true }
+        Signal { name: "leftChanged" }
+        Signal { name: "rightChanged" }
+        Signal { name: "topChanged" }
+        Signal { name: "bottomChanged" }
+        Signal { name: "verticalCenterChanged" }
+        Signal { name: "horizontalCenterChanged" }
+        Signal { name: "baselineChanged" }
+        Signal { name: "fillChanged" }
+        Signal { name: "centerInChanged" }
+        Signal { name: "leftMarginChanged" }
+        Signal { name: "rightMarginChanged" }
+        Signal { name: "topMarginChanged" }
+        Signal { name: "bottomMarginChanged" }
+        Signal { name: "marginsChanged" }
+        Signal { name: "verticalCenterOffsetChanged" }
+        Signal { name: "horizontalCenterOffsetChanged" }
+        Signal { name: "baselineOffsetChanged" }
+    }
+    Component {
+        name: "QDeclarativeAnimatedImage"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImage"
+        exports: [
+            "Qt/AnimatedImage 4.7",
+            "QtQuick/AnimatedImage 1.0"
+        ]
+        Property { name: "playing"; type: "bool" }
+        Property { name: "paused"; type: "bool" }
+        Property { name: "currentFrame"; type: "int" }
+        Property { name: "frameCount"; type: "int"; isReadonly: true }
+        Property { name: "sourceSize"; type: "QSize"; isReadonly: true }
+        Signal { name: "playingChanged" }
+        Signal { name: "pausedChanged" }
+        Signal { name: "frameChanged" }
+        Signal { name: "sourceSizeChanged" }
+    }
+    Component {
+        name: "QDeclarativeAnimationGroup"
+        defaultProperty: "animations"
+        prototype: "QDeclarativeAbstractAnimation"
+        Property {
+            name: "animations"
+            type: "QDeclarativeAbstractAnimation"
+            isList: true
+            isReadonly: true
+        }
+    }
+    Component {
+        name: "QDeclarativeApplication"
+        prototype: "QObject"
+        exports: [
+            "QtQuick/Application 1.1"
+        ]
+        Property { name: "active"; type: "bool"; isReadonly: true }
+        Property { name: "layoutDirection"; type: "Qt::LayoutDirection"; isReadonly: true }
+        Signal { name: "activeChanged" }
+        Signal { name: "layoutDirectionChanged" }
+    }
+    Component {
+        name: "QDeclarativeBasePositioner"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImplicitSizeItem"
+        Property { name: "spacing"; type: "int" }
+        Property { name: "move"; type: "QDeclarativeTransition"; isPointer: true }
+        Property { name: "add"; type: "QDeclarativeTransition"; isPointer: true }
+        Signal { name: "spacingChanged" }
+        Signal { name: "moveChanged" }
+        Signal { name: "addChanged" }
+    }
+    Component {
+        name: "QDeclarativeBehavior"
+        defaultProperty: "animation"
+        prototype: "QObject"
+        exports: [
+            "Qt/Behavior 4.7",
+            "QtQuick/Behavior 1.0"
+        ]
+        Property { name: "animation"; type: "QDeclarativeAbstractAnimation"; isPointer: true }
+        Property { name: "enabled"; type: "bool" }
+        Signal { name: "enabledChanged" }
+    }
+    Component {
+        name: "QDeclarativeBind"
+        prototype: "QObject"
+        exports: [
+            "Qt/Binding 4.7",
+            "QtQuick/Binding 1.0"
+        ]
+        Property { name: "target"; type: "QObject"; isPointer: true }
+        Property { name: "property"; type: "string" }
+        Property { name: "value"; type: "QVariant" }
+        Property { name: "when"; type: "bool" }
+    }
+    Component {
+        name: "QDeclarativeBorderImage"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImageBase"
+        exports: [
+            "Qt/BorderImage 4.7",
+            "QtQuick/BorderImage 1.0"
+        ]
+        Enum {
+            name: "TileMode"
+            values: {
+                "Stretch": 0,
+                "Repeat": 1,
+                "Round": 2
+            }
+        }
+        Property { name: "border"; type: "QDeclarativeScaleGrid"; isReadonly: true; isPointer: true }
+        Property { name: "horizontalTileMode"; type: "TileMode" }
+        Property { name: "verticalTileMode"; type: "TileMode" }
+        Property { name: "sourceSize"; type: "QSize"; isReadonly: true }
+        Signal { name: "horizontalTileModeChanged" }
+        Signal { name: "verticalTileModeChanged" }
+        Signal { name: "sourceSizeChanged" }
+    }
+    Component {
+        name: "QDeclarativeColorAnimation"
+        prototype: "QDeclarativePropertyAnimation"
+        exports: [
+            "Qt/ColorAnimation 4.7",
+            "QtQuick/ColorAnimation 1.0"
+        ]
+        Property { name: "from"; type: "QColor" }
+        Property { name: "to"; type: "QColor" }
+    }
+    Component {
+        name: "QDeclarativeColumn"
+        defaultProperty: "data"
+        prototype: "QDeclarativeBasePositioner"
+        exports: [
+            "Qt/Column 4.7",
+            "QtQuick/Column 1.0"
+        ]
+    }
+    Component {
+        name: "QDeclarativeComponent"
+        prototype: "QObject"
+        exports: [
+            "Qt/Component 4.7",
+            "QtQuick/Component 1.0"
+        ]
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Ready": 1,
+                "Loading": 2,
+                "Error": 3
+            }
+        }
+        Property { name: "progress"; type: "qreal"; isReadonly: true }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "url"; type: "QUrl"; isReadonly: true }
+        Signal {
+            name: "statusChanged"
+            Parameter { type: "QDeclarativeComponent::Status" }
+        }
+        Signal {
+            name: "progressChanged"
+            Parameter { type: "qreal" }
+        }
+        Method { name: "errorString"; type: "string" }
+    }
+    Component {
+        name: "QDeclarativeConnections"
+        prototype: "QObject"
+        exports: [
+            "Qt/Connections 4.7",
+            "QtQuick/Connections 1.0"
+        ]
+        Property { name: "target"; type: "QObject"; isPointer: true }
+        Property { name: "ignoreUnknownSignals"; type: "bool" }
+        Signal { name: "targetChanged" }
+    }
+    Component {
+        name: "QDeclarativeCurve"
+        prototype: "QDeclarativePathElement"
+        Property { name: "x"; type: "qreal" }
+        Property { name: "y"; type: "qreal" }
+        Signal { name: "xChanged" }
+        Signal { name: "yChanged" }
+    }
+    Component {
+        name: "QDeclarativeDrag"
+        prototype: "QObject"
+        exports: [
+            "Qt/Drag 4.7",
+            "QtQuick/Drag 1.0"
+        ]
+        Enum {
+            name: "Axis"
+            values: {
+                "XAxis": 1,
+                "YAxis": 2,
+                "XandYAxis": 3
+            }
+        }
+        Property { name: "target"; type: "QGraphicsObject"; isPointer: true }
+        Property { name: "axis"; type: "Axis" }
+        Property { name: "minimumX"; type: "qreal" }
+        Property { name: "maximumX"; type: "qreal" }
+        Property { name: "minimumY"; type: "qreal" }
+        Property { name: "maximumY"; type: "qreal" }
+        Property { name: "active"; type: "bool"; isReadonly: true }
+        Property { name: "filterChildren"; type: "bool" }
+        Signal { name: "targetChanged" }
+        Signal { name: "axisChanged" }
+        Signal { name: "minimumXChanged" }
+        Signal { name: "maximumXChanged" }
+        Signal { name: "minimumYChanged" }
+        Signal { name: "maximumYChanged" }
+        Signal { name: "activeChanged" }
+        Signal { name: "filterChildrenChanged" }
+    }
+    Component {
+        name: "QDeclarativeEasingValueType"
+        prototype: "QDeclarativeValueType"
+        exports: [
+            "Qt/Easing 4.7",
+            "QtQuick/Easing 1.0"
+        ]
+        Enum {
+            name: "Type"
+            values: {
+                "Linear": 0,
+                "InQuad": 1,
+                "OutQuad": 2,
+                "InOutQuad": 3,
+                "OutInQuad": 4,
+                "InCubic": 5,
+                "OutCubic": 6,
+                "InOutCubic": 7,
+                "OutInCubic": 8,
+                "InQuart": 9,
+                "OutQuart": 10,
+                "InOutQuart": 11,
+                "OutInQuart": 12,
+                "InQuint": 13,
+                "OutQuint": 14,
+                "InOutQuint": 15,
+                "OutInQuint": 16,
+                "InSine": 17,
+                "OutSine": 18,
+                "InOutSine": 19,
+                "OutInSine": 20,
+                "InExpo": 21,
+                "OutExpo": 22,
+                "InOutExpo": 23,
+                "OutInExpo": 24,
+                "InCirc": 25,
+                "OutCirc": 26,
+                "InOutCirc": 27,
+                "OutInCirc": 28,
+                "InElastic": 29,
+                "OutElastic": 30,
+                "InOutElastic": 31,
+                "OutInElastic": 32,
+                "InBack": 33,
+                "OutBack": 34,
+                "InOutBack": 35,
+                "OutInBack": 36,
+                "InBounce": 37,
+                "OutBounce": 38,
+                "InOutBounce": 39,
+                "OutInBounce": 40,
+                "InCurve": 41,
+                "OutCurve": 42,
+                "SineCurve": 43,
+                "CosineCurve": 44
+            }
+        }
+        Property { name: "type"; type: "Type" }
+        Property { name: "amplitude"; type: "qreal" }
+        Property { name: "overshoot"; type: "qreal" }
+        Property { name: "period"; type: "qreal" }
+    }
+    Component {
+        name: "QDeclarativeFlickable"
+        defaultProperty: "flickableData"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/Flickable 4.7",
+            "QtQuick/Flickable 1.0",
+            "QtQuick/Flickable 1.1"
+        ]
+        Enum {
+            name: "BoundsBehavior"
+            values: {
+                "StopAtBounds": 0,
+                "DragOverBounds": 1,
+                "DragAndOvershootBounds": 2
+            }
+        }
+        Enum {
+            name: "FlickableDirection"
+            values: {
+                "AutoFlickDirection": 0,
+                "HorizontalFlick": 1,
+                "VerticalFlick": 2,
+                "HorizontalAndVerticalFlick": 3
+            }
+        }
+        Property { name: "contentWidth"; type: "qreal" }
+        Property { name: "contentHeight"; type: "qreal" }
+        Property { name: "contentX"; type: "qreal" }
+        Property { name: "contentY"; type: "qreal" }
+        Property { name: "contentItem"; type: "QDeclarativeItem"; isReadonly: true; isPointer: true }
+        Property { name: "horizontalVelocity"; type: "qreal"; isReadonly: true }
+        Property { name: "verticalVelocity"; type: "qreal"; isReadonly: true }
+        Property { name: "boundsBehavior"; type: "BoundsBehavior" }
+        Property { name: "maximumFlickVelocity"; type: "qreal" }
+        Property { name: "flickDeceleration"; type: "qreal" }
+        Property { name: "moving"; type: "bool"; isReadonly: true }
+        Property { name: "movingHorizontally"; type: "bool"; isReadonly: true }
+        Property { name: "movingVertically"; type: "bool"; isReadonly: true }
+        Property { name: "flicking"; type: "bool"; isReadonly: true }
+        Property { name: "flickingHorizontally"; type: "bool"; isReadonly: true }
+        Property { name: "flickingVertically"; type: "bool"; isReadonly: true }
+        Property { name: "flickableDirection"; type: "FlickableDirection" }
+        Property { name: "interactive"; type: "bool" }
+        Property { name: "pressDelay"; type: "int" }
+        Property { name: "atXEnd"; type: "bool"; isReadonly: true }
+        Property { name: "atYEnd"; type: "bool"; isReadonly: true }
+        Property { name: "atXBeginning"; type: "bool"; isReadonly: true }
+        Property { name: "atYBeginning"; type: "bool"; isReadonly: true }
+        Property {
+            name: "visibleArea"
+            type: "QDeclarativeFlickableVisibleArea"
+            isReadonly: true
+            isPointer: true
+        }
+        Property { name: "flickableData"; type: "QObject"; isList: true; isReadonly: true }
+        Property { name: "flickableChildren"; type: "QGraphicsObject"; isList: true; isReadonly: true }
+        Signal { name: "contentWidthChanged" }
+        Signal { name: "contentHeightChanged" }
+        Signal { name: "contentXChanged" }
+        Signal { name: "contentYChanged" }
+        Signal { name: "movingChanged" }
+        Signal { name: "movingHorizontallyChanged" }
+        Signal { name: "movingVerticallyChanged" }
+        Signal { name: "flickingChanged" }
+        Signal { name: "flickingHorizontallyChanged" }
+        Signal { name: "flickingVerticallyChanged" }
+        Signal { name: "horizontalVelocityChanged" }
+        Signal { name: "verticalVelocityChanged" }
+        Signal { name: "isAtBoundaryChanged" }
+        Signal { name: "flickableDirectionChanged" }
+        Signal { name: "interactiveChanged" }
+        Signal { name: "boundsBehaviorChanged" }
+        Signal { name: "maximumFlickVelocityChanged" }
+        Signal { name: "flickDecelerationChanged" }
+        Signal { name: "pressDelayChanged" }
+        Signal { name: "movementStarted" }
+        Signal { name: "movementEnded" }
+        Signal { name: "flickStarted" }
+        Signal { name: "flickEnded" }
+        Method {
+            name: "resizeContent"
+            Parameter { name: "w"; type: "qreal" }
+            Parameter { name: "h"; type: "qreal" }
+            Parameter { name: "center"; type: "QPointF" }
+        }
+        Method { name: "returnToBounds" }
+    }
+    Component {
+        name: "QDeclarativeFlickableVisibleArea"
+        prototype: "QObject"
+        Property { name: "xPosition"; type: "qreal"; isReadonly: true }
+        Property { name: "yPosition"; type: "qreal"; isReadonly: true }
+        Property { name: "widthRatio"; type: "qreal"; isReadonly: true }
+        Property { name: "heightRatio"; type: "qreal"; isReadonly: true }
+        Signal {
+            name: "xPositionChanged"
+            Parameter { name: "xPosition"; type: "qreal" }
+        }
+        Signal {
+            name: "yPositionChanged"
+            Parameter { name: "yPosition"; type: "qreal" }
+        }
+        Signal {
+            name: "widthRatioChanged"
+            Parameter { name: "widthRatio"; type: "qreal" }
+        }
+        Signal {
+            name: "heightRatioChanged"
+            Parameter { name: "heightRatio"; type: "qreal" }
+        }
+    }
+    Component {
+        name: "QDeclarativeFlipable"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/Flipable 4.7",
+            "QtQuick/Flipable 1.0"
+        ]
+        Enum {
+            name: "Side"
+            values: {
+                "Front": 0,
+                "Back": 1
+            }
+        }
+        Property { name: "front"; type: "QGraphicsObject"; isPointer: true }
+        Property { name: "back"; type: "QGraphicsObject"; isPointer: true }
+        Property { name: "side"; type: "Side"; isReadonly: true }
+        Signal { name: "frontChanged" }
+        Signal { name: "backChanged" }
+        Signal { name: "sideChanged" }
+    }
+    Component {
+        name: "QDeclarativeFlow"
+        defaultProperty: "data"
+        prototype: "QDeclarativeBasePositioner"
+        exports: [
+            "Qt/Flow 4.7",
+            "QtQuick/Flow 1.0",
+            "QtQuick/Flow 1.1"
+        ]
+        Enum {
+            name: "Flow"
+            values: {
+                "LeftToRight": 0,
+                "TopToBottom": 1
+            }
+        }
+        Property { name: "layoutDirection"; type: "Qt::LayoutDirection" }
+        Property { name: "flow"; type: "Flow" }
+        Signal { name: "flowChanged" }
+        Signal { name: "layoutDirectionChanged" }
+    }
+    Component {
+        name: "QDeclarativeFocusPanel"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/FocusPanel 4.7",
+            "QtQuick/FocusPanel 1.0"
+        ]
+        Property { name: "active"; type: "bool" }
+        Signal { name: "activeChanged" }
+    }
+    Component {
+        name: "QDeclarativeFocusScope"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/FocusScope 4.7",
+            "QtQuick/FocusScope 1.0"
+        ]
+    }
+    Component {
+        name: "QDeclarativeFontLoader"
+        prototype: "QObject"
+        exports: [
+            "Qt/FontLoader 4.7",
+            "QtQuick/FontLoader 1.0"
+        ]
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Ready": 1,
+                "Loading": 2,
+                "Error": 3
+            }
+        }
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "name"; type: "string" }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Signal { name: "sourceChanged" }
+        Signal { name: "nameChanged" }
+        Signal { name: "statusChanged" }
+    }
+    Component {
+        name: "QDeclarativeFontValueType"
+        prototype: "QDeclarativeValueType"
+        exports: [
+            "Qt/Font 4.7",
+            "QtQuick/Font 1.0"
+        ]
+        Enum {
+            name: "FontWeight"
+            values: {
+                "Light": 25,
+                "Normal": 50,
+                "DemiBold": 63,
+                "Bold": 75,
+                "Black": 87
+            }
+        }
+        Enum {
+            name: "Capitalization"
+            values: {
+                "MixedCase": 0,
+                "AllUppercase": 1,
+                "AllLowercase": 2,
+                "SmallCaps": 3,
+                "Capitalize": 4
+            }
+        }
+        Property { name: "family"; type: "string" }
+        Property { name: "bold"; type: "bool" }
+        Property { name: "weight"; type: "FontWeight" }
+        Property { name: "italic"; type: "bool" }
+        Property { name: "underline"; type: "bool" }
+        Property { name: "overline"; type: "bool" }
+        Property { name: "strikeout"; type: "bool" }
+        Property { name: "pointSize"; type: "qreal" }
+        Property { name: "pixelSize"; type: "int" }
+        Property { name: "capitalization"; type: "Capitalization" }
+        Property { name: "letterSpacing"; type: "qreal" }
+        Property { name: "wordSpacing"; type: "qreal" }
+    }
+    Component {
+        name: "QDeclarativeGradient"
+        defaultProperty: "stops"
+        prototype: "QObject"
+        exports: [
+            "Qt/Gradient 4.7",
+            "QtQuick/Gradient 1.0"
+        ]
+        Property { name: "stops"; type: "QDeclarativeGradientStop"; isList: true; isReadonly: true }
+        Signal { name: "updated" }
+    }
+    Component {
+        name: "QDeclarativeGradientStop"
+        prototype: "QObject"
+        exports: [
+            "Qt/GradientStop 4.7",
+            "QtQuick/GradientStop 1.0"
+        ]
+        Property { name: "position"; type: "qreal" }
+        Property { name: "color"; type: "QColor" }
+    }
+    Component {
+        name: "QDeclarativeGrid"
+        defaultProperty: "data"
+        prototype: "QDeclarativeBasePositioner"
+        exports: [
+            "Qt/Grid 4.7",
+            "QtQuick/Grid 1.0",
+            "QtQuick/Grid 1.1"
+        ]
+        Enum {
+            name: "Flow"
+            values: {
+                "LeftToRight": 0,
+                "TopToBottom": 1
+            }
+        }
+        Property { name: "rows"; type: "int" }
+        Property { name: "columns"; type: "int" }
+        Property { name: "flow"; type: "Flow" }
+        Property { name: "layoutDirection"; type: "Qt::LayoutDirection" }
+        Signal { name: "rowsChanged" }
+        Signal { name: "columnsChanged" }
+        Signal { name: "flowChanged" }
+        Signal { name: "layoutDirectionChanged" }
+    }
+    Component {
+        name: "QDeclarativeGridView"
+        defaultProperty: "data"
+        prototype: "QDeclarativeFlickable"
+        exports: [
+            "Qt/GridView 4.7",
+            "QtQuick/GridView 1.0",
+            "QtQuick/GridView 1.1"
+        ]
+        Enum {
+            name: "HighlightRangeMode"
+            values: {
+                "NoHighlightRange": 0,
+                "ApplyRange": 1,
+                "StrictlyEnforceRange": 2
+            }
+        }
+        Enum {
+            name: "Flow"
+            values: {
+                "LeftToRight": 0,
+                "TopToBottom": 1
+            }
+        }
+        Enum {
+            name: "SnapMode"
+            values: {
+                "NoSnap": 0,
+                "SnapToRow": 1,
+                "SnapOneRow": 2
+            }
+        }
+        Enum {
+            name: "PositionMode"
+            values: {
+                "Beginning": 0,
+                "Center": 1,
+                "End": 2,
+                "Visible": 3,
+                "Contain": 4
+            }
+        }
+        Property { name: "model"; type: "QVariant" }
+        Property { name: "delegate"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "currentIndex"; type: "int" }
+        Property { name: "currentItem"; type: "QDeclarativeItem"; isReadonly: true; isPointer: true }
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Property { name: "highlight"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "highlightItem"; type: "QDeclarativeItem"; isReadonly: true; isPointer: true }
+        Property { name: "highlightFollowsCurrentItem"; type: "bool" }
+        Property { name: "highlightMoveDuration"; type: "int" }
+        Property { name: "preferredHighlightBegin"; type: "qreal" }
+        Property { name: "preferredHighlightEnd"; type: "qreal" }
+        Property { name: "highlightRangeMode"; type: "HighlightRangeMode" }
+        Property { name: "flow"; type: "Flow" }
+        Property { name: "keyNavigationWraps"; type: "bool" }
+        Property { name: "cacheBuffer"; type: "int" }
+        Property { name: "cellWidth"; type: "int" }
+        Property { name: "cellHeight"; type: "int" }
+        Property { name: "snapMode"; type: "SnapMode" }
+        Property { name: "header"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "footer"; type: "QDeclarativeComponent"; isPointer: true }
+        Signal { name: "countChanged" }
+        Signal { name: "currentIndexChanged" }
+        Signal { name: "cellWidthChanged" }
+        Signal { name: "cellHeightChanged" }
+        Signal { name: "highlightChanged" }
+        Signal { name: "highlightItemChanged" }
+        Signal { name: "preferredHighlightBeginChanged" }
+        Signal { name: "preferredHighlightEndChanged" }
+        Signal { name: "highlightRangeModeChanged" }
+        Signal { name: "highlightMoveDurationChanged" }
+        Signal { name: "modelChanged" }
+        Signal { name: "delegateChanged" }
+        Signal { name: "flowChanged" }
+        Signal { name: "keyNavigationWrapsChanged" }
+        Signal { name: "cacheBufferChanged" }
+        Signal { name: "snapModeChanged" }
+        Signal { name: "headerChanged" }
+        Signal { name: "footerChanged" }
+        Method { name: "moveCurrentIndexUp" }
+        Method { name: "moveCurrentIndexDown" }
+        Method { name: "moveCurrentIndexLeft" }
+        Method { name: "moveCurrentIndexRight" }
+        Method {
+            name: "positionViewAtIndex"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "mode"; type: "int" }
+        }
+        Method {
+            name: "indexAt"
+            type: "int"
+            Parameter { name: "x"; type: "int" }
+            Parameter { name: "y"; type: "int" }
+        }
+        Method { name: "positionViewAtBeginning" }
+        Method { name: "positionViewAtEnd" }
+    }
+    Component {
+        name: "QDeclarativeImage"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImageBase"
+        exports: [
+            "Qt/Image 4.7",
+            "QtQuick/Image 1.0"
+        ]
+        Enum {
+            name: "FillMode"
+            values: {
+                "Stretch": 0,
+                "PreserveAspectFit": 1,
+                "PreserveAspectCrop": 2,
+                "Tile": 3,
+                "TileVertically": 4,
+                "TileHorizontally": 5
+            }
+        }
+        Property { name: "fillMode"; type: "FillMode" }
+        Property { name: "paintedWidth"; type: "qreal"; isReadonly: true }
+        Property { name: "paintedHeight"; type: "qreal"; isReadonly: true }
+        Signal { name: "fillModeChanged" }
+        Signal { name: "paintedGeometryChanged" }
+    }
+    Component {
+        name: "QDeclarativeImageBase"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImplicitSizeItem"
+        exports: [
+            "QtQuick/ 1.1"
+        ]
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Ready": 1,
+                "Loading": 2,
+                "Error": 3
+            }
+        }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "progress"; type: "qreal"; isReadonly: true }
+        Property { name: "asynchronous"; type: "bool" }
+        Property { name: "cache"; type: "bool" }
+        Property { name: "sourceSize"; type: "QSize" }
+        Property { name: "mirror"; type: "bool" }
+        Signal {
+            name: "sourceChanged"
+            Parameter { type: "QUrl" }
+        }
+        Signal { name: "sourceSizeChanged" }
+        Signal {
+            name: "statusChanged"
+            Parameter { type: "QDeclarativeImageBase::Status" }
+        }
+        Signal {
+            name: "progressChanged"
+            Parameter { name: "progress"; type: "qreal" }
+        }
+        Signal { name: "asynchronousChanged" }
+        Signal { name: "cacheChanged" }
+        Signal { name: "mirrorChanged" }
+    }
+    Component {
+        name: "QDeclarativeImplicitSizeItem"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "QtQuick/ 1.0",
+            "QtQuick/ 1.1"
+        ]
+        Property { name: "implicitWidth"; type: "qreal"; isReadonly: true }
+        Property { name: "implicitHeight"; type: "qreal"; isReadonly: true }
+        Signal { name: "implicitWidthChanged" }
+        Signal { name: "implicitHeightChanged" }
+    }
+    Component {
+        name: "QDeclarativeImplicitSizePaintedItem"
+        defaultProperty: "data"
+        prototype: "QDeclarativePaintedItem"
+        exports: [
+            "QtQuick/ 1.0",
+            "QtQuick/ 1.1"
+        ]
+        Property { name: "implicitWidth"; type: "qreal"; isReadonly: true }
+        Property { name: "implicitHeight"; type: "qreal"; isReadonly: true }
+        Signal { name: "implicitWidthChanged" }
+        Signal { name: "implicitHeightChanged" }
+    }
+    Component {
+        name: "QDeclarativeItem"
+        defaultProperty: "data"
+        prototype: "QGraphicsObject"
+        exports: [
+            "Qt/Item 4.7",
+            "QtQuick/Item 1.0",
+            "QtQuick/Item 1.1"
+        ]
+        Enum {
+            name: "TransformOrigin"
+            values: {
+                "TopLeft": 0,
+                "Top": 1,
+                "TopRight": 2,
+                "Left": 3,
+                "Center": 4,
+                "Right": 5,
+                "BottomLeft": 6,
+                "Bottom": 7,
+                "BottomRight": 8
+            }
+        }
+        Property { name: "parent"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+        Property { name: "resources"; type: "QObject"; isList: true; isReadonly: true }
+        Property { name: "states"; type: "QDeclarativeState"; isList: true; isReadonly: true }
+        Property { name: "transitions"; type: "QDeclarativeTransition"; isList: true; isReadonly: true }
+        Property { name: "state"; type: "string" }
+        Property { name: "childrenRect"; type: "QRectF"; isReadonly: true }
+        Property { name: "anchors"; type: "QDeclarativeAnchors"; isReadonly: true; isPointer: true }
+        Property { name: "left"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "right"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "horizontalCenter"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "top"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "bottom"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "verticalCenter"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "baseline"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "baselineOffset"; type: "qreal" }
+        Property { name: "clip"; type: "bool" }
+        Property { name: "focus"; type: "bool" }
+        Property { name: "activeFocus"; type: "bool"; isReadonly: true }
+        Property { name: "transform"; type: "QGraphicsTransform"; isList: true; isReadonly: true }
+        Property { name: "transformOrigin"; type: "TransformOrigin" }
+        Property { name: "transformOriginPoint"; type: "QPointF"; isReadonly: true }
+        Property { name: "smooth"; type: "bool" }
+        Property { name: "implicitWidth"; type: "qreal" }
+        Property { name: "implicitHeight"; type: "qreal" }
+        Signal {
+            name: "childrenRectChanged"
+            Parameter { type: "QRectF" }
+        }
+        Signal {
+            name: "baselineOffsetChanged"
+            Parameter { type: "qreal" }
+        }
+        Signal {
+            name: "stateChanged"
+            Parameter { type: "string" }
+        }
+        Signal {
+            name: "focusChanged"
+            Parameter { type: "bool" }
+        }
+        Signal {
+            name: "activeFocusChanged"
+            Parameter { type: "bool" }
+        }
+        Signal {
+            name: "parentChanged"
+            Parameter { type: "QDeclarativeItem"; isPointer: true }
+        }
+        Signal {
+            name: "transformOriginChanged"
+            Parameter { type: "TransformOrigin" }
+        }
+        Signal {
+            name: "smoothChanged"
+            Parameter { type: "bool" }
+        }
+        Signal {
+            name: "clipChanged"
+            Parameter { type: "bool" }
+        }
+        Signal { name: "implicitWidthChanged" }
+        Signal { name: "implicitHeightChanged" }
+        Method {
+            name: "mapFromItem"
+            type: "QScriptValue"
+            Parameter { name: "item"; type: "QScriptValue" }
+            Parameter { name: "x"; type: "qreal" }
+            Parameter { name: "y"; type: "qreal" }
+        }
+        Method {
+            name: "mapToItem"
+            type: "QScriptValue"
+            Parameter { name: "item"; type: "QScriptValue" }
+            Parameter { name: "x"; type: "qreal" }
+            Parameter { name: "y"; type: "qreal" }
+        }
+        Method { name: "forceActiveFocus" }
+        Method {
+            name: "childAt"
+            type: "QDeclarativeItem*"
+            Parameter { name: "x"; type: "qreal" }
+            Parameter { name: "y"; type: "qreal" }
+        }
+    }
+    Component {
+        name: "QDeclarativeKeyNavigationAttached"
+        prototype: "QObject"
+        exports: [
+            "Qt/KeyNavigation 4.7",
+            "QtQuick/KeyNavigation 1.0"
+        ]
+        Enum {
+            name: "Priority"
+            values: {
+                "BeforeItem": 0,
+                "AfterItem": 1
+            }
+        }
+        Property { name: "left"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "right"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "up"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "down"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "tab"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "backtab"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "priority"; type: "Priority" }
+        Signal { name: "leftChanged" }
+        Signal { name: "rightChanged" }
+        Signal { name: "upChanged" }
+        Signal { name: "downChanged" }
+        Signal { name: "tabChanged" }
+        Signal { name: "backtabChanged" }
+        Signal { name: "priorityChanged" }
+    }
+    Component {
+        name: "QDeclarativeKeysAttached"
+        prototype: "QObject"
+        exports: [
+            "Qt/Keys 4.7",
+            "QtQuick/Keys 1.0"
+        ]
+        Enum {
+            name: "Priority"
+            values: {
+                "BeforeItem": 0,
+                "AfterItem": 1
+            }
+        }
+        Property { name: "enabled"; type: "bool" }
+        Property { name: "forwardTo"; type: "QDeclarativeItem"; isList: true; isReadonly: true }
+        Property { name: "priority"; type: "Priority" }
+        Signal { name: "enabledChanged" }
+        Signal { name: "priorityChanged" }
+        Signal {
+            name: "pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "released"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit0Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit1Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit2Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit3Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit4Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit5Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit6Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit7Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit8Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "digit9Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "leftPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "rightPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "upPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "downPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "tabPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "backtabPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "asteriskPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "numberSignPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "escapePressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "returnPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "enterPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "deletePressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "spacePressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "backPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "cancelPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "selectPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "yesPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "noPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "context1Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "context2Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "context3Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "context4Pressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "callPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "hangupPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "flipPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "menuPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "volumeUpPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+        Signal {
+            name: "volumeDownPressed"
+            Parameter { name: "event"; type: "QDeclarativeKeyEvent"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativeLayoutItem"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/LayoutItem 4.7",
+            "QtQuick/LayoutItem 1.0"
+        ]
+        Property { name: "maximumSize"; type: "QSizeF" }
+        Property { name: "minimumSize"; type: "QSizeF" }
+        Property { name: "preferredSize"; type: "QSizeF" }
+        Signal { name: "maximumSizeChanged" }
+        Signal { name: "minimumSizeChanged" }
+        Signal { name: "preferredSizeChanged" }
+    }
+    Component {
+        name: "QDeclarativeListElement"
+        prototype: "QObject"
+        exports: [
+            "Qt/ListElement 4.7",
+            "QtQuick/ListElement 1.0"
+        ]
+    }
+    Component {
+        name: "QDeclarativeListModel"
+        prototype: "QListModelInterface"
+        exports: [
+            "Qt/ListModel 4.7",
+            "QtQuick/ListModel 1.0"
+        ]
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Signal { name: "countChanged" }
+        Method { name: "clear" }
+        Method {
+            name: "remove"
+            Parameter { name: "index"; type: "int" }
+        }
+        Method {
+            name: "append"
+            Parameter { type: "QScriptValue" }
+        }
+        Method {
+            name: "insert"
+            Parameter { name: "index"; type: "int" }
+            Parameter { type: "QScriptValue" }
+        }
+        Method {
+            name: "get"
+            type: "QScriptValue"
+            Parameter { name: "index"; type: "int" }
+        }
+        Method {
+            name: "set"
+            Parameter { name: "index"; type: "int" }
+            Parameter { type: "QScriptValue" }
+        }
+        Method {
+            name: "setProperty"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "property"; type: "string" }
+            Parameter { name: "value"; type: "QVariant" }
+        }
+        Method {
+            name: "move"
+            Parameter { name: "from"; type: "int" }
+            Parameter { name: "to"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+        }
+        Method { name: "sync" }
+    }
+    Component {
+        name: "QDeclarativeListView"
+        defaultProperty: "data"
+        prototype: "QDeclarativeFlickable"
+        exports: [
+            "Qt/ListView 4.7",
+            "QtQuick/ListView 1.0",
+            "QtQuick/ListView 1.1"
+        ]
+        Enum {
+            name: "HighlightRangeMode"
+            values: {
+                "NoHighlightRange": 0,
+                "ApplyRange": 1,
+                "StrictlyEnforceRange": 2
+            }
+        }
+        Enum {
+            name: "Orientation"
+            values: {
+                "Horizontal": 1,
+                "Vertical": 2
+            }
+        }
+        Enum {
+            name: "SnapMode"
+            values: {
+                "NoSnap": 0,
+                "SnapToItem": 1,
+                "SnapOneItem": 2
+            }
+        }
+        Enum {
+            name: "PositionMode"
+            values: {
+                "Beginning": 0,
+                "Center": 1,
+                "End": 2,
+                "Visible": 3,
+                "Contain": 4
+            }
+        }
+        Property { name: "model"; type: "QVariant" }
+        Property { name: "delegate"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "currentIndex"; type: "int" }
+        Property { name: "currentItem"; type: "QDeclarativeItem"; isReadonly: true; isPointer: true }
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Property { name: "highlight"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "highlightItem"; type: "QDeclarativeItem"; isReadonly: true; isPointer: true }
+        Property { name: "highlightFollowsCurrentItem"; type: "bool" }
+        Property { name: "highlightMoveSpeed"; type: "qreal" }
+        Property { name: "highlightMoveDuration"; type: "int" }
+        Property { name: "highlightResizeSpeed"; type: "qreal" }
+        Property { name: "highlightResizeDuration"; type: "int" }
+        Property { name: "preferredHighlightBegin"; type: "qreal" }
+        Property { name: "preferredHighlightEnd"; type: "qreal" }
+        Property { name: "highlightRangeMode"; type: "HighlightRangeMode" }
+        Property { name: "spacing"; type: "qreal" }
+        Property { name: "orientation"; type: "Orientation" }
+        Property { name: "keyNavigationWraps"; type: "bool" }
+        Property { name: "cacheBuffer"; type: "int" }
+        Property { name: "section"; type: "QDeclarativeViewSection"; isReadonly: true; isPointer: true }
+        Property { name: "currentSection"; type: "string"; isReadonly: true }
+        Property { name: "snapMode"; type: "SnapMode" }
+        Property { name: "header"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "footer"; type: "QDeclarativeComponent"; isPointer: true }
+        Signal { name: "countChanged" }
+        Signal { name: "spacingChanged" }
+        Signal { name: "orientationChanged" }
+        Signal { name: "currentIndexChanged" }
+        Signal { name: "currentSectionChanged" }
+        Signal { name: "highlightMoveSpeedChanged" }
+        Signal { name: "highlightMoveDurationChanged" }
+        Signal { name: "highlightResizeSpeedChanged" }
+        Signal { name: "highlightResizeDurationChanged" }
+        Signal { name: "highlightChanged" }
+        Signal { name: "highlightItemChanged" }
+        Signal { name: "modelChanged" }
+        Signal { name: "delegateChanged" }
+        Signal { name: "highlightFollowsCurrentItemChanged" }
+        Signal { name: "preferredHighlightBeginChanged" }
+        Signal { name: "preferredHighlightEndChanged" }
+        Signal { name: "highlightRangeModeChanged" }
+        Signal { name: "keyNavigationWrapsChanged" }
+        Signal { name: "cacheBufferChanged" }
+        Signal { name: "snapModeChanged" }
+        Signal { name: "headerChanged" }
+        Signal { name: "footerChanged" }
+        Method { name: "incrementCurrentIndex" }
+        Method { name: "decrementCurrentIndex" }
+        Method {
+            name: "positionViewAtIndex"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "mode"; type: "int" }
+        }
+        Method {
+            name: "indexAt"
+            type: "int"
+            Parameter { name: "x"; type: "int" }
+            Parameter { name: "y"; type: "int" }
+        }
+        Method { name: "positionViewAtBeginning" }
+        Method { name: "positionViewAtEnd" }
+    }
+    Component {
+        name: "QDeclarativeLoader"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImplicitSizeItem"
+        exports: [
+            "Qt/Loader 4.7",
+            "QtQuick/Loader 1.0"
+        ]
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Ready": 1,
+                "Loading": 2,
+                "Error": 3
+            }
+        }
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "sourceComponent"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "item"; type: "QGraphicsObject"; isReadonly: true; isPointer: true }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "progress"; type: "qreal"; isReadonly: true }
+        Signal { name: "itemChanged" }
+        Signal { name: "sourceChanged" }
+        Signal { name: "statusChanged" }
+        Signal { name: "progressChanged" }
+        Signal { name: "loaded" }
+    }
+    Component {
+        name: "QDeclarativeMouseArea"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/MouseArea 4.7",
+            "QtQuick/MouseArea 1.0"
+        ]
+        Property { name: "mouseX"; type: "qreal"; isReadonly: true }
+        Property { name: "mouseY"; type: "qreal"; isReadonly: true }
+        Property { name: "containsMouse"; type: "bool"; isReadonly: true }
+        Property { name: "pressed"; type: "bool"; isReadonly: true }
+        Property { name: "enabled"; type: "bool" }
+        Property { name: "pressedButtons"; type: "Qt::MouseButtons"; isReadonly: true }
+        Property { name: "acceptedButtons"; type: "Qt::MouseButtons" }
+        Property { name: "hoverEnabled"; type: "bool" }
+        Property { name: "drag"; type: "QDeclarativeDrag"; isReadonly: true; isPointer: true }
+        Signal { name: "hoveredChanged" }
+        Signal { name: "pressedChanged" }
+        Signal { name: "enabledChanged" }
+        Signal { name: "acceptedButtonsChanged" }
+        Signal { name: "hoverEnabledChanged" }
+        Signal {
+            name: "positionChanged"
+            Parameter { name: "mouse"; type: "QDeclarativeMouseEvent"; isPointer: true }
+        }
+        Signal {
+            name: "mousePositionChanged"
+            Parameter { name: "mouse"; type: "QDeclarativeMouseEvent"; isPointer: true }
+        }
+        Signal {
+            name: "pressed"
+            Parameter { name: "mouse"; type: "QDeclarativeMouseEvent"; isPointer: true }
+        }
+        Signal {
+            name: "pressAndHold"
+            Parameter { name: "mouse"; type: "QDeclarativeMouseEvent"; isPointer: true }
+        }
+        Signal {
+            name: "released"
+            Parameter { name: "mouse"; type: "QDeclarativeMouseEvent"; isPointer: true }
+        }
+        Signal {
+            name: "clicked"
+            Parameter { name: "mouse"; type: "QDeclarativeMouseEvent"; isPointer: true }
+        }
+        Signal {
+            name: "doubleClicked"
+            Parameter { name: "mouse"; type: "QDeclarativeMouseEvent"; isPointer: true }
+        }
+        Signal { name: "entered" }
+        Signal { name: "exited" }
+        Signal { name: "canceled" }
+    }
+    Component {
+        name: "QDeclarativeNumberAnimation"
+        prototype: "QDeclarativePropertyAnimation"
+        exports: [
+            "Qt/NumberAnimation 4.7",
+            "QtQuick/NumberAnimation 1.0"
+        ]
+        Property { name: "from"; type: "qreal" }
+        Property { name: "to"; type: "qreal" }
+    }
+    Component {
+        name: "QDeclarativePackage"
+        defaultProperty: "data"
+        prototype: "QObject"
+        exports: [
+            "Qt/Package 4.7",
+            "QtQuick/Package 1.0"
+        ]
+        Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+    }
+    Component {
+        name: "QDeclarativePaintedItem"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        Property { name: "contentsSize"; type: "QSize" }
+        Property { name: "fillColor"; type: "QColor" }
+        Property { name: "pixelCacheSize"; type: "int" }
+        Property { name: "smoothCache"; type: "bool" }
+        Property { name: "contentsScale"; type: "qreal" }
+        Signal { name: "fillColorChanged" }
+        Signal { name: "contentsSizeChanged" }
+        Signal { name: "contentsScaleChanged" }
+    }
+    Component {
+        name: "QDeclarativeParallelAnimation"
+        defaultProperty: "animations"
+        prototype: "QDeclarativeAnimationGroup"
+        exports: [
+            "Qt/ParallelAnimation 4.7",
+            "QtQuick/ParallelAnimation 1.0"
+        ]
+    }
+    Component {
+        name: "QDeclarativeParentAnimation"
+        defaultProperty: "animations"
+        prototype: "QDeclarativeAnimationGroup"
+        exports: [
+            "Qt/ParentAnimation 4.7",
+            "QtQuick/ParentAnimation 1.0"
+        ]
+        Property { name: "target"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "newParent"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "via"; type: "QDeclarativeItem"; isPointer: true }
+        Signal { name: "targetChanged" }
+        Signal { name: "newParentChanged" }
+        Signal { name: "viaChanged" }
+    }
+    Component {
+        name: "QDeclarativeParentChange"
+        prototype: "QDeclarativeStateOperation"
+        exports: [
+            "Qt/ParentChange 4.7",
+            "QtQuick/ParentChange 1.0"
+        ]
+        Property { name: "target"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "parent"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "x"; type: "QDeclarativeScriptString" }
+        Property { name: "y"; type: "QDeclarativeScriptString" }
+        Property { name: "width"; type: "QDeclarativeScriptString" }
+        Property { name: "height"; type: "QDeclarativeScriptString" }
+        Property { name: "scale"; type: "QDeclarativeScriptString" }
+        Property { name: "rotation"; type: "QDeclarativeScriptString" }
+    }
+    Component {
+        name: "QDeclarativePath"
+        defaultProperty: "pathElements"
+        prototype: "QObject"
+        exports: [
+            "Qt/Path 4.7",
+            "QtQuick/Path 1.0"
+        ]
+        Property { name: "pathElements"; type: "QDeclarativePathElement"; isList: true; isReadonly: true }
+        Property { name: "startX"; type: "qreal" }
+        Property { name: "startY"; type: "qreal" }
+        Property { name: "closed"; type: "bool"; isReadonly: true }
+        Signal { name: "changed" }
+        Signal { name: "startXChanged" }
+        Signal { name: "startYChanged" }
+    }
+    Component {
+        name: "QDeclarativePathAttribute"
+        prototype: "QDeclarativePathElement"
+        exports: [
+            "Qt/PathAttribute 4.7",
+            "QtQuick/PathAttribute 1.0"
+        ]
+        Property { name: "name"; type: "string" }
+        Property { name: "value"; type: "qreal" }
+        Signal { name: "nameChanged" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativePathCubic"
+        prototype: "QDeclarativeCurve"
+        exports: [
+            "Qt/PathCubic 4.7",
+            "QtQuick/PathCubic 1.0"
+        ]
+        Property { name: "control1X"; type: "qreal" }
+        Property { name: "control1Y"; type: "qreal" }
+        Property { name: "control2X"; type: "qreal" }
+        Property { name: "control2Y"; type: "qreal" }
+        Signal { name: "control1XChanged" }
+        Signal { name: "control1YChanged" }
+        Signal { name: "control2XChanged" }
+        Signal { name: "control2YChanged" }
+    }
+    Component {
+        name: "QDeclarativePathElement"
+        prototype: "QObject"
+        Signal { name: "changed" }
+    }
+    Component {
+        name: "QDeclarativePathLine"
+        prototype: "QDeclarativeCurve"
+        exports: [
+            "Qt/PathLine 4.7",
+            "QtQuick/PathLine 1.0"
+        ]
+    }
+    Component {
+        name: "QDeclarativePathPercent"
+        prototype: "QDeclarativePathElement"
+        exports: [
+            "Qt/PathPercent 4.7",
+            "QtQuick/PathPercent 1.0"
+        ]
+        Property { name: "value"; type: "qreal" }
+        Signal { name: "valueChanged" }
+    }
+    Component {
+        name: "QDeclarativePathQuad"
+        prototype: "QDeclarativeCurve"
+        exports: [
+            "Qt/PathQuad 4.7",
+            "QtQuick/PathQuad 1.0"
+        ]
+        Property { name: "controlX"; type: "qreal" }
+        Property { name: "controlY"; type: "qreal" }
+        Signal { name: "controlXChanged" }
+        Signal { name: "controlYChanged" }
+    }
+    Component {
+        name: "QDeclarativePathView"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/PathView 4.7",
+            "QtQuick/PathView 1.0"
+        ]
+        Enum {
+            name: "HighlightRangeMode"
+            values: {
+                "NoHighlightRange": 0,
+                "ApplyRange": 1,
+                "StrictlyEnforceRange": 2
+            }
+        }
+        Property { name: "model"; type: "QVariant" }
+        Property { name: "path"; type: "QDeclarativePath"; isPointer: true }
+        Property { name: "currentIndex"; type: "int" }
+        Property { name: "offset"; type: "qreal" }
+        Property { name: "highlight"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "highlightItem"; type: "QDeclarativeItem"; isReadonly: true; isPointer: true }
+        Property { name: "preferredHighlightBegin"; type: "qreal" }
+        Property { name: "preferredHighlightEnd"; type: "qreal" }
+        Property { name: "highlightRangeMode"; type: "HighlightRangeMode" }
+        Property { name: "highlightMoveDuration"; type: "int" }
+        Property { name: "dragMargin"; type: "qreal" }
+        Property { name: "flickDeceleration"; type: "qreal" }
+        Property { name: "interactive"; type: "bool" }
+        Property { name: "moving"; type: "bool"; isReadonly: true }
+        Property { name: "flicking"; type: "bool"; isReadonly: true }
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Property { name: "delegate"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "pathItemCount"; type: "int" }
+        Signal { name: "currentIndexChanged" }
+        Signal { name: "offsetChanged" }
+        Signal { name: "modelChanged" }
+        Signal { name: "countChanged" }
+        Signal { name: "pathChanged" }
+        Signal { name: "preferredHighlightBeginChanged" }
+        Signal { name: "preferredHighlightEndChanged" }
+        Signal { name: "highlightRangeModeChanged" }
+        Signal { name: "dragMarginChanged" }
+        Signal { name: "snapPositionChanged" }
+        Signal { name: "delegateChanged" }
+        Signal { name: "pathItemCountChanged" }
+        Signal { name: "flickDecelerationChanged" }
+        Signal { name: "interactiveChanged" }
+        Signal { name: "movingChanged" }
+        Signal { name: "flickingChanged" }
+        Signal { name: "highlightChanged" }
+        Signal { name: "highlightItemChanged" }
+        Signal { name: "highlightMoveDurationChanged" }
+        Signal { name: "movementStarted" }
+        Signal { name: "movementEnded" }
+        Signal { name: "flickStarted" }
+        Signal { name: "flickEnded" }
+        Method { name: "incrementCurrentIndex" }
+        Method { name: "decrementCurrentIndex" }
+    }
+    Component {
+        name: "QDeclarativePauseAnimation"
+        prototype: "QDeclarativeAbstractAnimation"
+        exports: [
+            "Qt/PauseAnimation 4.7",
+            "QtQuick/PauseAnimation 1.0"
+        ]
+        Property { name: "duration"; type: "int" }
+        Signal {
+            name: "durationChanged"
+            Parameter { type: "int" }
+        }
+    }
+    Component {
+        name: "QDeclarativePen"
+        prototype: "QObject"
+        Property { name: "width"; type: "int" }
+        Property { name: "color"; type: "QColor" }
+        Signal { name: "penChanged" }
+    }
+    Component {
+        name: "QDeclarativePinch"
+        prototype: "QObject"
+        exports: [
+            "QtQuick/Pinch 1.1"
+        ]
+        Enum {
+            name: "Axis"
+            values: {
+                "NoDrag": 0,
+                "XAxis": 1,
+                "YAxis": 2,
+                "XandYAxis": 3
+            }
+        }
+        Property { name: "target"; type: "QGraphicsObject"; isPointer: true }
+        Property { name: "minimumScale"; type: "qreal" }
+        Property { name: "maximumScale"; type: "qreal" }
+        Property { name: "minimumRotation"; type: "qreal" }
+        Property { name: "maximumRotation"; type: "qreal" }
+        Property { name: "dragAxis"; type: "Axis" }
+        Property { name: "minimumX"; type: "qreal" }
+        Property { name: "maximumX"; type: "qreal" }
+        Property { name: "minimumY"; type: "qreal" }
+        Property { name: "maximumY"; type: "qreal" }
+        Property { name: "active"; type: "bool"; isReadonly: true }
+        Signal { name: "targetChanged" }
+        Signal { name: "minimumScaleChanged" }
+        Signal { name: "maximumScaleChanged" }
+        Signal { name: "minimumRotationChanged" }
+        Signal { name: "maximumRotationChanged" }
+        Signal { name: "dragAxisChanged" }
+        Signal { name: "minimumXChanged" }
+        Signal { name: "maximumXChanged" }
+        Signal { name: "minimumYChanged" }
+        Signal { name: "maximumYChanged" }
+        Signal { name: "activeChanged" }
+    }
+    Component {
+        name: "QDeclarativePinchArea"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "QtQuick/PinchArea 1.1"
+        ]
+        Property { name: "enabled"; type: "bool" }
+        Property { name: "pinch"; type: "QDeclarativePinch"; isReadonly: true; isPointer: true }
+        Signal { name: "enabledChanged" }
+        Signal {
+            name: "pinchStarted"
+            Parameter { name: "pinch"; type: "QDeclarativePinchEvent"; isPointer: true }
+        }
+        Signal {
+            name: "pinchUpdated"
+            Parameter { name: "pinch"; type: "QDeclarativePinchEvent"; isPointer: true }
+        }
+        Signal {
+            name: "pinchFinished"
+            Parameter { name: "pinch"; type: "QDeclarativePinchEvent"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativePropertyAction"
+        prototype: "QDeclarativeAbstractAnimation"
+        exports: [
+            "Qt/PropertyAction 4.7",
+            "QtQuick/PropertyAction 1.0"
+        ]
+        Property { name: "target"; type: "QObject"; isPointer: true }
+        Property { name: "property"; type: "string" }
+        Property { name: "properties"; type: "string" }
+        Property { name: "targets"; type: "QObject"; isList: true; isReadonly: true }
+        Property { name: "exclude"; type: "QObject"; isList: true; isReadonly: true }
+        Property { name: "value"; type: "QVariant" }
+        Signal {
+            name: "valueChanged"
+            Parameter { type: "QVariant" }
+        }
+        Signal {
+            name: "propertiesChanged"
+            Parameter { type: "string" }
+        }
+        Signal { name: "targetChanged" }
+        Signal { name: "propertyChanged" }
+    }
+    Component {
+        name: "QDeclarativePropertyAnimation"
+        prototype: "QDeclarativeAbstractAnimation"
+        exports: [
+            "Qt/PropertyAnimation 4.7",
+            "QtQuick/PropertyAnimation 1.0"
+        ]
+        Property { name: "duration"; type: "int" }
+        Property { name: "from"; type: "QVariant" }
+        Property { name: "to"; type: "QVariant" }
+        Property { name: "easing"; type: "QEasingCurve" }
+        Property { name: "target"; type: "QObject"; isPointer: true }
+        Property { name: "property"; type: "string" }
+        Property { name: "properties"; type: "string" }
+        Property { name: "targets"; type: "QObject"; isList: true; isReadonly: true }
+        Property { name: "exclude"; type: "QObject"; isList: true; isReadonly: true }
+        Signal {
+            name: "durationChanged"
+            Parameter { type: "int" }
+        }
+        Signal {
+            name: "fromChanged"
+            Parameter { type: "QVariant" }
+        }
+        Signal {
+            name: "toChanged"
+            Parameter { type: "QVariant" }
+        }
+        Signal {
+            name: "easingChanged"
+            Parameter { type: "QEasingCurve" }
+        }
+        Signal {
+            name: "propertiesChanged"
+            Parameter { type: "string" }
+        }
+        Signal { name: "targetChanged" }
+        Signal { name: "propertyChanged" }
+    }
+    Component {
+        name: "QDeclarativePropertyChanges"
+        prototype: "QDeclarativeStateOperation"
+        exports: [
+            "Qt/PropertyChanges 4.7",
+            "QtQuick/PropertyChanges 1.0"
+        ]
+        Property { name: "target"; type: "QObject"; isPointer: true }
+        Property { name: "restoreEntryValues"; type: "bool" }
+        Property { name: "explicit"; type: "bool" }
+    }
+    Component {
+        name: "QDeclarativeRectangle"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/Rectangle 4.7",
+            "QtQuick/Rectangle 1.0"
+        ]
+        Property { name: "color"; type: "QColor" }
+        Property { name: "gradient"; type: "QDeclarativeGradient"; isPointer: true }
+        Property { name: "border"; type: "QDeclarativePen"; isReadonly: true; isPointer: true }
+        Property { name: "radius"; type: "qreal" }
+        Signal { name: "colorChanged" }
+        Signal { name: "radiusChanged" }
+    }
+    Component {
+        name: "QDeclarativeRepeater"
+        defaultProperty: "delegate"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "Qt/Repeater 4.7",
+            "QtQuick/Repeater 1.0",
+            "QtQuick/Repeater 1.1"
+        ]
+        Property { name: "model"; type: "QVariant" }
+        Property { name: "delegate"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Signal { name: "modelChanged" }
+        Signal { name: "delegateChanged" }
+        Signal { name: "countChanged" }
+        Signal {
+            name: "itemAdded"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "item"; type: "QDeclarativeItem"; isPointer: true }
+        }
+        Signal {
+            name: "itemRemoved"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "item"; type: "QDeclarativeItem"; isPointer: true }
+        }
+        Method {
+            name: "itemAt"
+            type: "QDeclarativeItem*"
+            Parameter { name: "index"; type: "int" }
+        }
+    }
+    Component {
+        name: "QDeclarativeRotationAnimation"
+        prototype: "QDeclarativePropertyAnimation"
+        exports: [
+            "Qt/RotationAnimation 4.7",
+            "QtQuick/RotationAnimation 1.0"
+        ]
+        Enum {
+            name: "RotationDirection"
+            values: {
+                "Numerical": 0,
+                "Shortest": 1,
+                "Clockwise": 2,
+                "Counterclockwise": 3
+            }
+        }
+        Property { name: "from"; type: "qreal" }
+        Property { name: "to"; type: "qreal" }
+        Property { name: "direction"; type: "RotationDirection" }
+        Signal { name: "directionChanged" }
+    }
+    Component {
+        name: "QDeclarativeRow"
+        defaultProperty: "data"
+        prototype: "QDeclarativeBasePositioner"
+        exports: [
+            "Qt/Row 4.7",
+            "QtQuick/Row 1.0",
+            "QtQuick/Row 1.1"
+        ]
+        Property { name: "layoutDirection"; type: "Qt::LayoutDirection" }
+        Signal { name: "layoutDirectionChanged" }
+    }
+    Component {
+        name: "QDeclarativeScaleGrid"
+        prototype: "QObject"
+        Property { name: "left"; type: "int" }
+        Property { name: "top"; type: "int" }
+        Property { name: "right"; type: "int" }
+        Property { name: "bottom"; type: "int" }
+        Signal { name: "borderChanged" }
+    }
+    Component {
+        name: "QDeclarativeScriptAction"
+        prototype: "QDeclarativeAbstractAnimation"
+        exports: [
+            "Qt/ScriptAction 4.7",
+            "QtQuick/ScriptAction 1.0"
+        ]
+        Property { name: "script"; type: "QDeclarativeScriptString" }
+        Property { name: "scriptName"; type: "string" }
+    }
+    Component {
+        name: "QDeclarativeSequentialAnimation"
+        defaultProperty: "animations"
+        prototype: "QDeclarativeAnimationGroup"
+        exports: [
+            "Qt/SequentialAnimation 4.7",
+            "QtQuick/SequentialAnimation 1.0"
+        ]
+    }
+    Component {
+        name: "QDeclarativeSmoothedAnimation"
+        prototype: "QDeclarativeNumberAnimation"
+        exports: [
+            "Qt/SmoothedAnimation 4.7",
+            "QtQuick/SmoothedAnimation 1.0"
+        ]
+        Enum {
+            name: "ReversingMode"
+            values: {
+                "Eased": 0,
+                "Immediate": 1,
+                "Sync": 2
+            }
+        }
+        Property { name: "velocity"; type: "qreal" }
+        Property { name: "reversingMode"; type: "ReversingMode" }
+        Property { name: "maximumEasingTime"; type: "qreal" }
+        Signal { name: "velocityChanged" }
+        Signal { name: "reversingModeChanged" }
+        Signal { name: "maximumEasingTimeChanged" }
+    }
+    Component {
+        name: "QDeclarativeSpringAnimation"
+        prototype: "QDeclarativeNumberAnimation"
+        exports: [
+            "Qt/SpringAnimation 4.7",
+            "QtQuick/SpringAnimation 1.0"
+        ]
+        Property { name: "velocity"; type: "qreal" }
+        Property { name: "spring"; type: "qreal" }
+        Property { name: "damping"; type: "qreal" }
+        Property { name: "epsilon"; type: "qreal" }
+        Property { name: "modulus"; type: "qreal" }
+        Property { name: "mass"; type: "qreal" }
+        Signal { name: "modulusChanged" }
+        Signal { name: "massChanged" }
+        Signal { name: "syncChanged" }
+    }
+    Component {
+        name: "QDeclarativeState"
+        defaultProperty: "changes"
+        prototype: "QObject"
+        exports: [
+            "Qt/State 4.7",
+            "QtQuick/State 1.0"
+        ]
+        Property { name: "name"; type: "string" }
+        Property { name: "when"; type: "QDeclarativeBinding"; isPointer: true }
+        Property { name: "extend"; type: "string" }
+        Property { name: "changes"; type: "QDeclarativeStateOperation"; isList: true; isReadonly: true }
+        Signal { name: "completed" }
+    }
+    Component {
+        name: "QDeclarativeStateChangeScript"
+        prototype: "QDeclarativeStateOperation"
+        exports: [
+            "Qt/StateChangeScript 4.7",
+            "QtQuick/StateChangeScript 1.0"
+        ]
+        Property { name: "script"; type: "QDeclarativeScriptString" }
+        Property { name: "name"; type: "string" }
+    }
+    Component {
+        name: "QDeclarativeStateGroup"
+        prototype: "QObject"
+        exports: [
+            "Qt/StateGroup 4.7",
+            "QtQuick/StateGroup 1.0"
+        ]
+        Property { name: "state"; type: "string" }
+        Property { name: "states"; type: "QDeclarativeState"; isList: true; isReadonly: true }
+        Property { name: "transitions"; type: "QDeclarativeTransition"; isList: true; isReadonly: true }
+        Signal {
+            name: "stateChanged"
+            Parameter { type: "string" }
+        }
+    }
+    Component { name: "QDeclarativeStateOperation"; prototype: "QObject" }
+    Component {
+        name: "QDeclarativeSystemPalette"
+        prototype: "QObject"
+        exports: [
+            "Qt/SystemPalette 4.7",
+            "QtQuick/SystemPalette 1.0"
+        ]
+        Enum {
+            name: "ColorGroup"
+            values: {
+                "Active": 0,
+                "Inactive": 2,
+                "Disabled": 1
+            }
+        }
+        Property { name: "colorGroup"; type: "QDeclarativeSystemPalette::ColorGroup" }
+        Property { name: "window"; type: "QColor"; isReadonly: true }
+        Property { name: "windowText"; type: "QColor"; isReadonly: true }
+        Property { name: "base"; type: "QColor"; isReadonly: true }
+        Property { name: "text"; type: "QColor"; isReadonly: true }
+        Property { name: "alternateBase"; type: "QColor"; isReadonly: true }
+        Property { name: "button"; type: "QColor"; isReadonly: true }
+        Property { name: "buttonText"; type: "QColor"; isReadonly: true }
+        Property { name: "light"; type: "QColor"; isReadonly: true }
+        Property { name: "midlight"; type: "QColor"; isReadonly: true }
+        Property { name: "dark"; type: "QColor"; isReadonly: true }
+        Property { name: "mid"; type: "QColor"; isReadonly: true }
+        Property { name: "shadow"; type: "QColor"; isReadonly: true }
+        Property { name: "highlight"; type: "QColor"; isReadonly: true }
+        Property { name: "highlightedText"; type: "QColor"; isReadonly: true }
+        Signal { name: "paletteChanged" }
+    }
+    Component {
+        name: "QDeclarativeText"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImplicitSizeItem"
+        exports: [
+            "Qt/Text 4.7",
+            "QtQuick/Text 1.0",
+            "QtQuick/Text 1.1"
+        ]
+        Enum {
+            name: "HAlignment"
+            values: {
+                "AlignLeft": 1,
+                "AlignRight": 2,
+                "AlignHCenter": 4,
+                "AlignJustify": 8
+            }
+        }
+        Enum {
+            name: "VAlignment"
+            values: {
+                "AlignTop": 32,
+                "AlignBottom": 64,
+                "AlignVCenter": 128
+            }
+        }
+        Enum {
+            name: "TextStyle"
+            values: {
+                "Normal": 0,
+                "Outline": 1,
+                "Raised": 2,
+                "Sunken": 3
+            }
+        }
+        Enum {
+            name: "TextFormat"
+            values: {
+                "PlainText": 0,
+                "RichText": 1,
+                "AutoText": 2,
+                "StyledText": 4
+            }
+        }
+        Enum {
+            name: "TextElideMode"
+            values: {
+                "ElideLeft": 0,
+                "ElideRight": 1,
+                "ElideMiddle": 2,
+                "ElideNone": 3
+            }
+        }
+        Enum {
+            name: "WrapMode"
+            values: {
+                "NoWrap": 0,
+                "WordWrap": 1,
+                "WrapAnywhere": 3,
+                "WrapAtWordBoundaryOrAnywhere": 4,
+                "Wrap": 4
+            }
+        }
+        Enum {
+            name: "LineHeightMode"
+            values: {
+                "MultiplyHeight": 0,
+                "PixelHeight": 1
+            }
+        }
+        Property { name: "text"; type: "string" }
+        Property { name: "font"; type: "QFont" }
+        Property { name: "color"; type: "QColor" }
+        Property { name: "style"; type: "TextStyle" }
+        Property { name: "styleColor"; type: "QColor" }
+        Property { name: "horizontalAlignment"; type: "HAlignment" }
+        Property { name: "verticalAlignment"; type: "VAlignment" }
+        Property { name: "wrapMode"; type: "WrapMode" }
+        Property { name: "lineCount"; type: "int"; isReadonly: true }
+        Property { name: "truncated"; type: "bool"; isReadonly: true }
+        Property { name: "maximumLineCount"; type: "int" }
+        Property { name: "textFormat"; type: "TextFormat" }
+        Property { name: "elide"; type: "TextElideMode" }
+        Property { name: "paintedWidth"; type: "qreal"; isReadonly: true }
+        Property { name: "paintedHeight"; type: "qreal"; isReadonly: true }
+        Property { name: "lineHeight"; type: "qreal" }
+        Property { name: "lineHeightMode"; type: "LineHeightMode" }
+        Signal {
+            name: "textChanged"
+            Parameter { name: "text"; type: "string" }
+        }
+        Signal {
+            name: "linkActivated"
+            Parameter { name: "link"; type: "string" }
+        }
+        Signal {
+            name: "fontChanged"
+            Parameter { name: "font"; type: "QFont" }
+        }
+        Signal {
+            name: "colorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "styleChanged"
+            Parameter { name: "style"; type: "TextStyle" }
+        }
+        Signal {
+            name: "styleColorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "horizontalAlignmentChanged"
+            Parameter { name: "alignment"; type: "HAlignment" }
+        }
+        Signal {
+            name: "verticalAlignmentChanged"
+            Parameter { name: "alignment"; type: "VAlignment" }
+        }
+        Signal { name: "wrapModeChanged" }
+        Signal { name: "lineCountChanged" }
+        Signal { name: "truncatedChanged" }
+        Signal { name: "maximumLineCountChanged" }
+        Signal {
+            name: "textFormatChanged"
+            Parameter { name: "textFormat"; type: "TextFormat" }
+        }
+        Signal {
+            name: "elideModeChanged"
+            Parameter { name: "mode"; type: "TextElideMode" }
+        }
+        Signal { name: "paintedSizeChanged" }
+        Signal {
+            name: "lineHeightChanged"
+            Parameter { name: "lineHeight"; type: "qreal" }
+        }
+        Signal {
+            name: "lineHeightModeChanged"
+            Parameter { name: "mode"; type: "LineHeightMode" }
+        }
+    }
+    Component {
+        name: "QDeclarativeTextEdit"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImplicitSizePaintedItem"
+        exports: [
+            "Qt/TextEdit 4.7",
+            "QtQuick/TextEdit 1.0",
+            "QtQuick/TextEdit 1.1"
+        ]
+        Enum {
+            name: "HAlignment"
+            values: {
+                "AlignLeft": 1,
+                "AlignRight": 2,
+                "AlignHCenter": 4,
+                "AlignJustify": 8
+            }
+        }
+        Enum {
+            name: "VAlignment"
+            values: {
+                "AlignTop": 32,
+                "AlignBottom": 64,
+                "AlignVCenter": 128
+            }
+        }
+        Enum {
+            name: "TextFormat"
+            values: {
+                "PlainText": 0,
+                "RichText": 1,
+                "AutoText": 2
+            }
+        }
+        Enum {
+            name: "WrapMode"
+            values: {
+                "NoWrap": 0,
+                "WordWrap": 1,
+                "WrapAnywhere": 3,
+                "WrapAtWordBoundaryOrAnywhere": 4,
+                "Wrap": 4
+            }
+        }
+        Enum {
+            name: "SelectionMode"
+            values: {
+                "SelectCharacters": 0,
+                "SelectWords": 1
+            }
+        }
+        Property { name: "text"; type: "string" }
+        Property { name: "color"; type: "QColor" }
+        Property { name: "selectionColor"; type: "QColor" }
+        Property { name: "selectedTextColor"; type: "QColor" }
+        Property { name: "font"; type: "QFont" }
+        Property { name: "horizontalAlignment"; type: "HAlignment" }
+        Property { name: "verticalAlignment"; type: "VAlignment" }
+        Property { name: "wrapMode"; type: "WrapMode" }
+        Property { name: "lineCount"; type: "int"; isReadonly: true }
+        Property { name: "paintedWidth"; type: "qreal"; isReadonly: true }
+        Property { name: "paintedHeight"; type: "qreal"; isReadonly: true }
+        Property { name: "textFormat"; type: "TextFormat" }
+        Property { name: "readOnly"; type: "bool" }
+        Property { name: "cursorVisible"; type: "bool" }
+        Property { name: "cursorPosition"; type: "int" }
+        Property { name: "cursorRectangle"; type: "QRect"; isReadonly: true }
+        Property { name: "cursorDelegate"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "selectionStart"; type: "int"; isReadonly: true }
+        Property { name: "selectionEnd"; type: "int"; isReadonly: true }
+        Property { name: "selectedText"; type: "string"; isReadonly: true }
+        Property { name: "activeFocusOnPress"; type: "bool" }
+        Property { name: "persistentSelection"; type: "bool" }
+        Property { name: "textMargin"; type: "qreal" }
+        Property { name: "inputMethodHints"; type: "Qt::InputMethodHints" }
+        Property { name: "selectByMouse"; type: "bool" }
+        Property { name: "mouseSelectionMode"; type: "SelectionMode" }
+        Property { name: "canPaste"; type: "bool"; isReadonly: true }
+        Signal {
+            name: "textChanged"
+            Parameter { type: "string" }
+        }
+        Signal { name: "paintedSizeChanged" }
+        Signal { name: "cursorPositionChanged" }
+        Signal { name: "cursorRectangleChanged" }
+        Signal { name: "selectionStartChanged" }
+        Signal { name: "selectionEndChanged" }
+        Signal { name: "selectionChanged" }
+        Signal {
+            name: "colorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "selectionColorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "selectedTextColorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "fontChanged"
+            Parameter { name: "font"; type: "QFont" }
+        }
+        Signal {
+            name: "horizontalAlignmentChanged"
+            Parameter { name: "alignment"; type: "HAlignment" }
+        }
+        Signal {
+            name: "verticalAlignmentChanged"
+            Parameter { name: "alignment"; type: "VAlignment" }
+        }
+        Signal { name: "wrapModeChanged" }
+        Signal { name: "lineCountChanged" }
+        Signal {
+            name: "textFormatChanged"
+            Parameter { name: "textFormat"; type: "TextFormat" }
+        }
+        Signal {
+            name: "readOnlyChanged"
+            Parameter { name: "isReadOnly"; type: "bool" }
+        }
+        Signal {
+            name: "cursorVisibleChanged"
+            Parameter { name: "isCursorVisible"; type: "bool" }
+        }
+        Signal { name: "cursorDelegateChanged" }
+        Signal {
+            name: "activeFocusOnPressChanged"
+            Parameter { name: "activeFocusOnPressed"; type: "bool" }
+        }
+        Signal {
+            name: "persistentSelectionChanged"
+            Parameter { name: "isPersistentSelection"; type: "bool" }
+        }
+        Signal {
+            name: "textMarginChanged"
+            Parameter { name: "textMargin"; type: "qreal" }
+        }
+        Signal {
+            name: "selectByMouseChanged"
+            Parameter { name: "selectByMouse"; type: "bool" }
+        }
+        Signal {
+            name: "mouseSelectionModeChanged"
+            Parameter { name: "mode"; type: "SelectionMode" }
+        }
+        Signal {
+            name: "linkActivated"
+            Parameter { name: "link"; type: "string" }
+        }
+        Signal { name: "canPasteChanged" }
+        Method { name: "selectAll" }
+        Method { name: "selectWord" }
+        Method {
+            name: "select"
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+        }
+        Method { name: "deselect" }
+        Method { name: "cut" }
+        Method { name: "copy" }
+        Method { name: "paste" }
+        Method { name: "openSoftwareInputPanel" }
+        Method { name: "closeSoftwareInputPanel" }
+        Method {
+            name: "positionToRectangle"
+            type: "QRectF"
+            Parameter { type: "int" }
+        }
+        Method {
+            name: "positionAt"
+            type: "int"
+            Parameter { name: "x"; type: "int" }
+            Parameter { name: "y"; type: "int" }
+        }
+        Method {
+            name: "moveCursorSelection"
+            Parameter { name: "pos"; type: "int" }
+        }
+        Method {
+            name: "moveCursorSelection"
+            Parameter { name: "pos"; type: "int" }
+            Parameter { name: "mode"; type: "SelectionMode" }
+        }
+    }
+    Component {
+        name: "QDeclarativeTextInput"
+        defaultProperty: "data"
+        prototype: "QDeclarativeImplicitSizePaintedItem"
+        exports: [
+            "Qt/TextInput 4.7",
+            "QtQuick/TextInput 1.0",
+            "QtQuick/TextInput 1.1"
+        ]
+        Enum {
+            name: "EchoMode"
+            values: {
+                "Normal": 0,
+                "NoEcho": 1,
+                "Password": 2,
+                "PasswordEchoOnEdit": 3
+            }
+        }
+        Enum {
+            name: "HAlignment"
+            values: {
+                "AlignLeft": 1,
+                "AlignRight": 2,
+                "AlignHCenter": 4
+            }
+        }
+        Enum {
+            name: "SelectionMode"
+            values: {
+                "SelectCharacters": 0,
+                "SelectWords": 1
+            }
+        }
+        Property { name: "text"; type: "string" }
+        Property { name: "color"; type: "QColor" }
+        Property { name: "selectionColor"; type: "QColor" }
+        Property { name: "selectedTextColor"; type: "QColor" }
+        Property { name: "font"; type: "QFont" }
+        Property { name: "horizontalAlignment"; type: "HAlignment" }
+        Property { name: "readOnly"; type: "bool" }
+        Property { name: "cursorVisible"; type: "bool" }
+        Property { name: "cursorPosition"; type: "int" }
+        Property { name: "cursorRectangle"; type: "QRect"; isReadonly: true }
+        Property { name: "cursorDelegate"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "selectionStart"; type: "int"; isReadonly: true }
+        Property { name: "selectionEnd"; type: "int"; isReadonly: true }
+        Property { name: "selectedText"; type: "string"; isReadonly: true }
+        Property { name: "maximumLength"; type: "int" }
+        Property { name: "validator"; type: "QValidator"; isPointer: true }
+        Property { name: "inputMask"; type: "string" }
+        Property { name: "inputMethodHints"; type: "Qt::InputMethodHints" }
+        Property { name: "acceptableInput"; type: "bool"; isReadonly: true }
+        Property { name: "echoMode"; type: "EchoMode" }
+        Property { name: "activeFocusOnPress"; type: "bool" }
+        Property { name: "passwordCharacter"; type: "string" }
+        Property { name: "displayText"; type: "string"; isReadonly: true }
+        Property { name: "autoScroll"; type: "bool" }
+        Property { name: "selectByMouse"; type: "bool" }
+        Property { name: "mouseSelectionMode"; type: "SelectionMode" }
+        Property { name: "canPaste"; type: "bool"; isReadonly: true }
+        Signal { name: "textChanged" }
+        Signal { name: "cursorPositionChanged" }
+        Signal { name: "selectionStartChanged" }
+        Signal { name: "selectionEndChanged" }
+        Signal { name: "selectedTextChanged" }
+        Signal { name: "accepted" }
+        Signal { name: "acceptableInputChanged" }
+        Signal {
+            name: "colorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "selectionColorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "selectedTextColorChanged"
+            Parameter { name: "color"; type: "QColor" }
+        }
+        Signal {
+            name: "fontChanged"
+            Parameter { name: "font"; type: "QFont" }
+        }
+        Signal {
+            name: "horizontalAlignmentChanged"
+            Parameter { name: "alignment"; type: "HAlignment" }
+        }
+        Signal {
+            name: "readOnlyChanged"
+            Parameter { name: "isReadOnly"; type: "bool" }
+        }
+        Signal {
+            name: "cursorVisibleChanged"
+            Parameter { name: "isCursorVisible"; type: "bool" }
+        }
+        Signal { name: "cursorDelegateChanged" }
+        Signal {
+            name: "maximumLengthChanged"
+            Parameter { name: "maximumLength"; type: "int" }
+        }
+        Signal { name: "validatorChanged" }
+        Signal {
+            name: "inputMaskChanged"
+            Parameter { name: "inputMask"; type: "string" }
+        }
+        Signal {
+            name: "echoModeChanged"
+            Parameter { name: "echoMode"; type: "EchoMode" }
+        }
+        Signal { name: "passwordCharacterChanged" }
+        Signal { name: "displayTextChanged" }
+        Signal {
+            name: "activeFocusOnPressChanged"
+            Parameter { name: "activeFocusOnPress"; type: "bool" }
+        }
+        Signal {
+            name: "autoScrollChanged"
+            Parameter { name: "autoScroll"; type: "bool" }
+        }
+        Signal {
+            name: "selectByMouseChanged"
+            Parameter { name: "selectByMouse"; type: "bool" }
+        }
+        Signal {
+            name: "mouseSelectionModeChanged"
+            Parameter { name: "mode"; type: "SelectionMode" }
+        }
+        Signal { name: "canPasteChanged" }
+        Method { name: "selectAll" }
+        Method { name: "selectWord" }
+        Method {
+            name: "select"
+            Parameter { name: "start"; type: "int" }
+            Parameter { name: "end"; type: "int" }
+        }
+        Method { name: "deselect" }
+        Method { name: "cut" }
+        Method { name: "copy" }
+        Method { name: "paste" }
+        Method {
+            name: "positionAt"
+            type: "int"
+            Parameter { name: "x"; type: "int" }
+        }
+        Method {
+            name: "positionToRectangle"
+            type: "QRectF"
+            Parameter { name: "pos"; type: "int" }
+        }
+        Method {
+            name: "moveCursorSelection"
+            Parameter { name: "pos"; type: "int" }
+        }
+        Method {
+            name: "moveCursorSelection"
+            Parameter { name: "pos"; type: "int" }
+            Parameter { name: "mode"; type: "SelectionMode" }
+        }
+        Method { name: "openSoftwareInputPanel" }
+        Method { name: "closeSoftwareInputPanel" }
+    }
+    Component {
+        name: "QDeclarativeTimer"
+        prototype: "QObject"
+        exports: [
+            "Qt/Timer 4.7",
+            "QtQuick/Timer 1.0"
+        ]
+        Property { name: "interval"; type: "int" }
+        Property { name: "running"; type: "bool" }
+        Property { name: "repeat"; type: "bool" }
+        Property { name: "triggeredOnStart"; type: "bool" }
+        Property { name: "parent"; type: "QObject"; isReadonly: true; isPointer: true }
+        Signal { name: "triggered" }
+        Signal { name: "runningChanged" }
+        Signal { name: "intervalChanged" }
+        Signal { name: "repeatChanged" }
+        Signal { name: "triggeredOnStartChanged" }
+        Method { name: "start" }
+        Method { name: "stop" }
+        Method { name: "restart" }
+    }
+    Component {
+        name: "QDeclarativeTransition"
+        defaultProperty: "animations"
+        prototype: "QObject"
+        exports: [
+            "Qt/Transition 4.7",
+            "QtQuick/Transition 1.0"
+        ]
+        Property { name: "from"; type: "string" }
+        Property { name: "to"; type: "string" }
+        Property { name: "reversible"; type: "bool" }
+        Property {
+            name: "animations"
+            type: "QDeclarativeAbstractAnimation"
+            isList: true
+            isReadonly: true
+        }
+        Signal { name: "fromChanged" }
+        Signal { name: "toChanged" }
+        Signal { name: "reversibleChanged" }
+    }
+    Component {
+        name: "QDeclarativeTranslate"
+        prototype: "QGraphicsTransform"
+        exports: [
+            "Qt/Translate 4.7",
+            "QtQuick/Translate 1.0"
+        ]
+        Property { name: "x"; type: "qreal" }
+        Property { name: "y"; type: "qreal" }
+        Signal { name: "xChanged" }
+        Signal { name: "yChanged" }
+    }
+    Component { name: "QDeclarativeValueType"; prototype: "QObject" }
+    Component {
+        name: "QDeclarativeVector3dAnimation"
+        prototype: "QDeclarativePropertyAnimation"
+        exports: [
+            "Qt/Vector3dAnimation 4.7",
+            "QtQuick/Vector3dAnimation 1.0"
+        ]
+        Property { name: "from"; type: "QVector3D" }
+        Property { name: "to"; type: "QVector3D" }
+    }
+    Component {
+        name: "QDeclarativeViewSection"
+        prototype: "QObject"
+        exports: [
+            "Qt/ViewSection 4.7",
+            "QtQuick/ViewSection 1.0"
+        ]
+        Enum {
+            name: "SectionCriteria"
+            values: {
+                "FullString": 0,
+                "FirstCharacter": 1
+            }
+        }
+        Property { name: "property"; type: "string" }
+        Property { name: "criteria"; type: "SectionCriteria" }
+        Property { name: "delegate"; type: "QDeclarativeComponent"; isPointer: true }
+        Signal { name: "propertyChanged" }
+        Signal { name: "criteriaChanged" }
+        Signal { name: "delegateChanged" }
+    }
+    Component {
+        name: "QDeclarativeVisualDataModel"
+        defaultProperty: "delegate"
+        prototype: "QDeclarativeVisualModel"
+        exports: [
+            "Qt/VisualDataModel 4.7",
+            "QtQuick/VisualDataModel 1.0"
+        ]
+        Property { name: "model"; type: "QVariant" }
+        Property { name: "delegate"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "part"; type: "string" }
+        Property { name: "parts"; type: "QObject"; isReadonly: true; isPointer: true }
+        Property { name: "rootIndex"; type: "QVariant" }
+        Signal {
+            name: "createdPackage"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "package"; type: "QDeclarativePackage"; isPointer: true }
+        }
+        Signal {
+            name: "destroyingPackage"
+            Parameter { name: "package"; type: "QDeclarativePackage"; isPointer: true }
+        }
+        Signal { name: "rootIndexChanged" }
+        Method {
+            name: "modelIndex"
+            type: "QVariant"
+            Parameter { name: "idx"; type: "int" }
+        }
+        Method { name: "parentModelIndex"; type: "QVariant" }
+    }
+    Component { name: "QDeclarativeVisualDataModelParts"; prototype: "QObject" }
+    Component {
+        name: "QDeclarativeVisualItemModel"
+        defaultProperty: "children"
+        prototype: "QDeclarativeVisualModel"
+        exports: [
+            "Qt/VisualItemModel 4.7",
+            "QtQuick/VisualItemModel 1.0"
+        ]
+        Property { name: "children"; type: "QDeclarativeItem"; isList: true; isReadonly: true }
+        Signal { name: "childrenChanged" }
+    }
+    Component {
+        name: "QDeclarativeVisualModel"
+        prototype: "QObject"
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Signal { name: "countChanged" }
+        Signal {
+            name: "itemsInserted"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+        }
+        Signal {
+            name: "itemsRemoved"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+        }
+        Signal {
+            name: "itemsMoved"
+            Parameter { name: "from"; type: "int" }
+            Parameter { name: "to"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+        }
+        Signal {
+            name: "itemsChanged"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+        }
+        Signal { name: "modelReset" }
+        Signal {
+            name: "createdItem"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "item"; type: "QDeclarativeItem"; isPointer: true }
+        }
+        Signal {
+            name: "destroyingItem"
+            Parameter { name: "item"; type: "QDeclarativeItem"; isPointer: true }
+        }
+    }
+    Component {
+        name: "QDeclarativeWorkerScript"
+        prototype: "QObject"
+        exports: [
+            "Qt/WorkerScript 4.7",
+            "QtQuick/WorkerScript 1.0"
+        ]
+        Property { name: "source"; type: "QUrl" }
+        Signal { name: "sourceChanged" }
+        Signal {
+            name: "message"
+            Parameter { name: "messageObject"; type: "QScriptValue" }
+        }
+        Method {
+            name: "sendMessage"
+            Parameter { type: "QScriptValue" }
+        }
+    }
+    Component {
+        name: "QDeclarativeXmlListModel"
+        defaultProperty: "roles"
+        prototype: "QListModelInterface"
+        exports: [
+            "Qt/XmlListModel 4.7",
+            "QtQuick/XmlListModel 1.0"
+        ]
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Ready": 1,
+                "Loading": 2,
+                "Error": 3
+            }
+        }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "progress"; type: "qreal"; isReadonly: true }
+        Property { name: "source"; type: "QUrl" }
+        Property { name: "xml"; type: "string" }
+        Property { name: "query"; type: "string" }
+        Property { name: "namespaceDeclarations"; type: "string" }
+        Property { name: "roles"; type: "QDeclarativeXmlListModelRole"; isList: true; isReadonly: true }
+        Property { name: "count"; type: "int"; isReadonly: true }
+        Signal {
+            name: "statusChanged"
+            Parameter { type: "QDeclarativeXmlListModel::Status" }
+        }
+        Signal {
+            name: "progressChanged"
+            Parameter { name: "progress"; type: "qreal" }
+        }
+        Signal { name: "countChanged" }
+        Signal { name: "sourceChanged" }
+        Signal { name: "xmlChanged" }
+        Signal { name: "queryChanged" }
+        Signal { name: "namespaceDeclarationsChanged" }
+        Method { name: "reload" }
+        Method {
+            name: "get"
+            type: "QScriptValue"
+            Parameter { name: "index"; type: "int" }
+        }
+        Method { name: "errorString"; type: "string" }
+    }
+    Component {
+        name: "QDeclarativeXmlListModelRole"
+        prototype: "QObject"
+        exports: [
+            "Qt/XmlRole 4.7",
+            "QtQuick/XmlRole 1.0"
+        ]
+        Property { name: "name"; type: "string" }
+        Property { name: "query"; type: "string" }
+        Property { name: "isKey"; type: "bool" }
+        Signal { name: "nameChanged" }
+        Signal { name: "queryChanged" }
+        Signal { name: "isKeyChanged" }
+    }
+    Component {
+        name: "QDoubleValidator"
+        prototype: "QValidator"
+        exports: [
+            "Qt/DoubleValidator 4.7",
+            "QtQuick/DoubleValidator 1.0"
+        ]
+        Enum {
+            name: "Notation"
+            values: {
+                "StandardNotation": 0,
+                "ScientificNotation": 1
+            }
+        }
+        Property { name: "bottom"; type: "double" }
+        Property { name: "top"; type: "double" }
+        Property { name: "decimals"; type: "int" }
+        Property { name: "notation"; type: "Notation" }
+    }
+    Component {
+        name: "QGraphicsObject"
+        defaultProperty: "children"
+        prototype: "QObject"
+        Property { name: "parent"; type: "QGraphicsObject"; isPointer: true }
+        Property { name: "opacity"; type: "qreal" }
+        Property { name: "enabled"; type: "bool" }
+        Property { name: "visible"; type: "bool" }
+        Property { name: "pos"; type: "QPointF" }
+        Property { name: "x"; type: "qreal" }
+        Property { name: "y"; type: "qreal" }
+        Property { name: "z"; type: "qreal" }
+        Property { name: "rotation"; type: "qreal" }
+        Property { name: "scale"; type: "qreal" }
+        Property { name: "transformOriginPoint"; type: "QPointF" }
+        Property { name: "effect"; type: "QGraphicsEffect"; isPointer: true }
+        Property { name: "children"; type: "QGraphicsObject"; isList: true; isReadonly: true }
+        Property { name: "width"; type: "qreal" }
+        Property { name: "height"; type: "qreal" }
+        Signal { name: "parentChanged" }
+        Signal { name: "opacityChanged" }
+        Signal { name: "visibleChanged" }
+        Signal { name: "enabledChanged" }
+        Signal { name: "xChanged" }
+        Signal { name: "yChanged" }
+        Signal { name: "zChanged" }
+        Signal { name: "rotationChanged" }
+        Signal { name: "scaleChanged" }
+        Signal { name: "childrenChanged" }
+        Signal { name: "widthChanged" }
+        Signal { name: "heightChanged" }
+    }
+    Component {
+        name: "QGraphicsRotation"
+        prototype: "QGraphicsTransform"
+        exports: [
+            "Qt/Rotation 4.7",
+            "QtQuick/Rotation 1.0"
+        ]
+        Property { name: "origin"; type: "QVector3D" }
+        Property { name: "angle"; type: "qreal" }
+        Property { name: "axis"; type: "QVector3D" }
+        Signal { name: "originChanged" }
+        Signal { name: "angleChanged" }
+        Signal { name: "axisChanged" }
+    }
+    Component {
+        name: "QGraphicsScale"
+        prototype: "QGraphicsTransform"
+        exports: [
+            "Qt/Scale 4.7",
+            "QtQuick/Scale 1.0"
+        ]
+        Property { name: "origin"; type: "QVector3D" }
+        Property { name: "xScale"; type: "qreal" }
+        Property { name: "yScale"; type: "qreal" }
+        Property { name: "zScale"; type: "qreal" }
+        Signal { name: "originChanged" }
+        Signal { name: "xScaleChanged" }
+        Signal { name: "yScaleChanged" }
+        Signal { name: "zScaleChanged" }
+        Signal { name: "scaleChanged" }
+    }
+    Component { name: "QGraphicsTransform"; prototype: "QObject" }
+    Component {
+        name: "QGraphicsWidget"
+        defaultProperty: "children"
+        prototype: "__extended__.QGraphicsWidget"
+        exports: [
+            "Qt/QGraphicsWidget 4.7",
+            "QtQuick/QGraphicsWidget 1.0"
+        ]
+        Property { name: "anchors"; type: "QDeclarativeAnchors"; isReadonly: true; isPointer: true }
+        Property { name: "left"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "right"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "horizontalCenter"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "top"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "bottom"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+        Property { name: "verticalCenter"; type: "QDeclarativeAnchorLine"; isReadonly: true }
+    }
+    Component {
+        name: "QIntValidator"
+        prototype: "QValidator"
+        exports: [
+            "Qt/IntValidator 4.7",
+            "QtQuick/IntValidator 1.0"
+        ]
+        Property { name: "bottom"; type: "int" }
+        Property { name: "top"; type: "int" }
+    }
+    Component {
+        name: "QListModelInterface"
+        prototype: "QObject"
+        Signal {
+            name: "itemsInserted"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+        }
+        Signal {
+            name: "itemsRemoved"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+        }
+        Signal {
+            name: "itemsMoved"
+            Parameter { name: "from"; type: "int" }
+            Parameter { name: "to"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+        }
+        Signal {
+            name: "itemsChanged"
+            Parameter { name: "index"; type: "int" }
+            Parameter { name: "count"; type: "int" }
+            Parameter { name: "roles"; type: "QList<int>" }
+        }
+    }
+    Component {
+        name: "QObject"
+        exports: [
+            "Qt/QtObject 4.7",
+            "QtQuick/QtObject 1.0"
+        ]
+        Property { name: "objectName"; type: "string" }
+        Signal {
+            name: "destroyed"
+            Parameter { type: "QObject"; isPointer: true }
+        }
+        Signal { name: "destroyed" }
+        Method { name: "deleteLater" }
+    }
+    Component {
+        name: "QRegExpValidator"
+        prototype: "QValidator"
+        exports: [
+            "Qt/RegExpValidator 4.7",
+            "QtQuick/RegExpValidator 1.0"
+        ]
+        Property { name: "regExp"; type: "QRegExp" }
+    }
+    Component { name: "QValidator"; prototype: "QObject" }
+    Component {
+        name: "Qt"
+        Enum {
+            name: "GlobalColor"
+            values: {
+                "color0": 0,
+                "color1": 1,
+                "black": 2,
+                "white": 3,
+                "darkGray": 4,
+                "gray": 5,
+                "lightGray": 6,
+                "red": 7,
+                "green": 8,
+                "blue": 9,
+                "cyan": 10,
+                "magenta": 11,
+                "yellow": 12,
+                "darkRed": 13,
+                "darkGreen": 14,
+                "darkBlue": 15,
+                "darkCyan": 16,
+                "darkMagenta": 17,
+                "darkYellow": 18,
+                "transparent": 19
+            }
+        }
+        Enum {
+            name: "KeyboardModifiers"
+            values: {
+                "NoModifier": 0,
+                "ShiftModifier": 33554432,
+                "ControlModifier": 67108864,
+                "AltModifier": 134217728,
+                "MetaModifier": 268435456,
+                "KeypadModifier": 536870912,
+                "GroupSwitchModifier": 1073741824,
+                "KeyboardModifierMask": -33554432
+            }
+        }
+        Enum {
+            name: "MouseButtons"
+            values: {
+                "NoButton": 0,
+                "LeftButton": 1,
+                "RightButton": 2,
+                "MidButton": 4,
+                "MiddleButton": 4,
+                "XButton1": 8,
+                "XButton2": 16,
+                "MouseButtonMask": 255
+            }
+        }
+        Enum {
+            name: "Orientation"
+            values: {
+                "Horizontal": 1,
+                "Vertical": 2
+            }
+        }
+        Enum {
+            name: "Orientations"
+            values: {
+                "Horizontal": 1,
+                "Vertical": 2
+            }
+        }
+        Enum {
+            name: "FocusPolicy"
+            values: {
+                "NoFocus": 0,
+                "TabFocus": 1,
+                "ClickFocus": 2,
+                "StrongFocus": 11,
+                "WheelFocus": 15
+            }
+        }
+        Enum {
+            name: "SortOrder"
+            values: {
+                "AscendingOrder": 0,
+                "DescendingOrder": 1
+            }
+        }
+        Enum {
+            name: "Alignment"
+            values: {
+                "AlignLeft": 1,
+                "AlignLeading": 1,
+                "AlignRight": 2,
+                "AlignTrailing": 2,
+                "AlignHCenter": 4,
+                "AlignJustify": 8,
+                "AlignAbsolute": 16,
+                "AlignHorizontal_Mask": 31,
+                "AlignTop": 32,
+                "AlignBottom": 64,
+                "AlignVCenter": 128,
+                "AlignVertical_Mask": 224,
+                "AlignCenter": 132
+            }
+        }
+        Enum {
+            name: "TextElideMode"
+            values: {
+                "ElideLeft": 0,
+                "ElideRight": 1,
+                "ElideMiddle": 2,
+                "ElideNone": 3
+            }
+        }
+        Enum {
+            name: "WindowType"
+            values: {
+                "Widget": 0,
+                "Window": 1,
+                "Dialog": 3,
+                "Sheet": 5,
+                "Drawer": 7,
+                "Popup": 9,
+                "Tool": 11,
+                "ToolTip": 13,
+                "SplashScreen": 15,
+                "Desktop": 17,
+                "SubWindow": 18,
+                "WindowType_Mask": 255,
+                "MSWindowsFixedSizeDialogHint": 256,
+                "MSWindowsOwnDC": 512,
+                "X11BypassWindowManagerHint": 1024,
+                "FramelessWindowHint": 2048,
+                "WindowTitleHint": 4096,
+                "WindowSystemMenuHint": 8192,
+                "WindowMinimizeButtonHint": 16384,
+                "WindowMaximizeButtonHint": 32768,
+                "WindowMinMaxButtonsHint": 49152,
+                "WindowContextHelpButtonHint": 65536,
+                "WindowShadeButtonHint": 131072,
+                "WindowStaysOnTopHint": 262144,
+                "CustomizeWindowHint": 33554432,
+                "WindowStaysOnBottomHint": 67108864,
+                "WindowCloseButtonHint": 134217728,
+                "MacWindowToolBarButtonHint": 268435456,
+                "BypassGraphicsProxyWidget": 536870912,
+                "WindowOkButtonHint": 524288,
+                "WindowCancelButtonHint": 1048576,
+                "WindowSoftkeysVisibleHint": 1073741824,
+                "WindowSoftkeysRespondHint": -2147483648
+            }
+        }
+        Enum {
+            name: "WindowFlags"
+            values: {
+                "Widget": 0,
+                "Window": 1,
+                "Dialog": 3,
+                "Sheet": 5,
+                "Drawer": 7,
+                "Popup": 9,
+                "Tool": 11,
+                "ToolTip": 13,
+                "SplashScreen": 15,
+                "Desktop": 17,
+                "SubWindow": 18,
+                "WindowType_Mask": 255,
+                "MSWindowsFixedSizeDialogHint": 256,
+                "MSWindowsOwnDC": 512,
+                "X11BypassWindowManagerHint": 1024,
+                "FramelessWindowHint": 2048,
+                "WindowTitleHint": 4096,
+                "WindowSystemMenuHint": 8192,
+                "WindowMinimizeButtonHint": 16384,
+                "WindowMaximizeButtonHint": 32768,
+                "WindowMinMaxButtonsHint": 49152,
+                "WindowContextHelpButtonHint": 65536,
+                "WindowShadeButtonHint": 131072,
+                "WindowStaysOnTopHint": 262144,
+                "CustomizeWindowHint": 33554432,
+                "WindowStaysOnBottomHint": 67108864,
+                "WindowCloseButtonHint": 134217728,
+                "MacWindowToolBarButtonHint": 268435456,
+                "BypassGraphicsProxyWidget": 536870912,
+                "WindowOkButtonHint": 524288,
+                "WindowCancelButtonHint": 1048576,
+                "WindowSoftkeysVisibleHint": 1073741824,
+                "WindowSoftkeysRespondHint": -2147483648
+            }
+        }
+        Enum {
+            name: "WindowState"
+            values: {
+                "WindowNoState": 0,
+                "WindowMinimized": 1,
+                "WindowMaximized": 2,
+                "WindowFullScreen": 4,
+                "WindowActive": 8
+            }
+        }
+        Enum {
+            name: "WindowStates"
+            values: {
+                "WindowNoState": 0,
+                "WindowMinimized": 1,
+                "WindowMaximized": 2,
+                "WindowFullScreen": 4,
+                "WindowActive": 8
+            }
+        }
+        Enum {
+            name: "WidgetAttribute"
+            values: {
+                "WA_Disabled": 0,
+                "WA_UnderMouse": 1,
+                "WA_MouseTracking": 2,
+                "WA_ContentsPropagated": 3,
+                "WA_OpaquePaintEvent": 4,
+                "WA_NoBackground": 4,
+                "WA_StaticContents": 5,
+                "WA_LaidOut": 7,
+                "WA_PaintOnScreen": 8,
+                "WA_NoSystemBackground": 9,
+                "WA_UpdatesDisabled": 10,
+                "WA_Mapped": 11,
+                "WA_MacNoClickThrough": 12,
+                "WA_PaintOutsidePaintEvent": 13,
+                "WA_InputMethodEnabled": 14,
+                "WA_WState_Visible": 15,
+                "WA_WState_Hidden": 16,
+                "WA_ForceDisabled": 32,
+                "WA_KeyCompression": 33,
+                "WA_PendingMoveEvent": 34,
+                "WA_PendingResizeEvent": 35,
+                "WA_SetPalette": 36,
+                "WA_SetFont": 37,
+                "WA_SetCursor": 38,
+                "WA_NoChildEventsFromChildren": 39,
+                "WA_WindowModified": 41,
+                "WA_Resized": 42,
+                "WA_Moved": 43,
+                "WA_PendingUpdate": 44,
+                "WA_InvalidSize": 45,
+                "WA_MacBrushedMetal": 46,
+                "WA_MacMetalStyle": 46,
+                "WA_CustomWhatsThis": 47,
+                "WA_LayoutOnEntireRect": 48,
+                "WA_OutsideWSRange": 49,
+                "WA_GrabbedShortcut": 50,
+                "WA_TransparentForMouseEvents": 51,
+                "WA_PaintUnclipped": 52,
+                "WA_SetWindowIcon": 53,
+                "WA_NoMouseReplay": 54,
+                "WA_DeleteOnClose": 55,
+                "WA_RightToLeft": 56,
+                "WA_SetLayoutDirection": 57,
+                "WA_NoChildEventsForParent": 58,
+                "WA_ForceUpdatesDisabled": 59,
+                "WA_WState_Created": 60,
+                "WA_WState_CompressKeys": 61,
+                "WA_WState_InPaintEvent": 62,
+                "WA_WState_Reparented": 63,
+                "WA_WState_ConfigPending": 64,
+                "WA_WState_Polished": 66,
+                "WA_WState_DND": 67,
+                "WA_WState_OwnSizePolicy": 68,
+                "WA_WState_ExplicitShowHide": 69,
+                "WA_ShowModal": 70,
+                "WA_MouseNoMask": 71,
+                "WA_GroupLeader": 72,
+                "WA_NoMousePropagation": 73,
+                "WA_Hover": 74,
+                "WA_InputMethodTransparent": 75,
+                "WA_QuitOnClose": 76,
+                "WA_KeyboardFocusChange": 77,
+                "WA_AcceptDrops": 78,
+                "WA_DropSiteRegistered": 79,
+                "WA_ForceAcceptDrops": 79,
+                "WA_WindowPropagation": 80,
+                "WA_NoX11EventCompression": 81,
+                "WA_TintedBackground": 82,
+                "WA_X11OpenGLOverlay": 83,
+                "WA_AlwaysShowToolTips": 84,
+                "WA_MacOpaqueSizeGrip": 85,
+                "WA_SetStyle": 86,
+                "WA_SetLocale": 87,
+                "WA_MacShowFocusRect": 88,
+                "WA_MacNormalSize": 89,
+                "WA_MacSmallSize": 90,
+                "WA_MacMiniSize": 91,
+                "WA_LayoutUsesWidgetRect": 92,
+                "WA_StyledBackground": 93,
+                "WA_MSWindowsUseDirect3D": 94,
+                "WA_CanHostQMdiSubWindowTitleBar": 95,
+                "WA_MacAlwaysShowToolWindow": 96,
+                "WA_StyleSheet": 97,
+                "WA_ShowWithoutActivating": 98,
+                "WA_X11BypassTransientForHint": 99,
+                "WA_NativeWindow": 100,
+                "WA_DontCreateNativeAncestors": 101,
+                "WA_MacVariableSize": 102,
+                "WA_DontShowOnScreen": 103,
+                "WA_X11NetWmWindowTypeDesktop": 104,
+                "WA_X11NetWmWindowTypeDock": 105,
+                "WA_X11NetWmWindowTypeToolBar": 106,
+                "WA_X11NetWmWindowTypeMenu": 107,
+                "WA_X11NetWmWindowTypeUtility": 108,
+                "WA_X11NetWmWindowTypeSplash": 109,
+                "WA_X11NetWmWindowTypeDialog": 110,
+                "WA_X11NetWmWindowTypeDropDownMenu": 111,
+                "WA_X11NetWmWindowTypePopupMenu": 112,
+                "WA_X11NetWmWindowTypeToolTip": 113,
+                "WA_X11NetWmWindowTypeNotification": 114,
+                "WA_X11NetWmWindowTypeCombo": 115,
+                "WA_X11NetWmWindowTypeDND": 116,
+                "WA_MacFrameworkScaled": 117,
+                "WA_SetWindowModality": 118,
+                "WA_WState_WindowOpacitySet": 119,
+                "WA_TranslucentBackground": 120,
+                "WA_AcceptTouchEvents": 121,
+                "WA_WState_AcceptedTouchBeginEvent": 122,
+                "WA_TouchPadAcceptSingleTouchEvents": 123,
+                "WA_MergeSoftkeys": 124,
+                "WA_MergeSoftkeysRecursively": 125,
+                "WA_LockPortraitOrientation": 128,
+                "WA_LockLandscapeOrientation": 129,
+                "WA_AutoOrientation": 130,
+                "WA_X11DoNotAcceptFocus": 132,
+                "WA_AttributeCount": 133
+            }
+        }
+        Enum {
+            name: "ApplicationAttribute"
+            values: {
+                "AA_ImmediateWidgetCreation": 0,
+                "AA_MSWindowsUseDirect3DByDefault": 1,
+                "AA_DontShowIconsInMenus": 2,
+                "AA_NativeWindows": 3,
+                "AA_DontCreateNativeWidgetSiblings": 4,
+                "AA_MacPluginApplication": 5,
+                "AA_DontUseNativeMenuBar": 6,
+                "AA_MacDontSwapCtrlAndMeta": 7,
+                "AA_S60DontConstructApplicationPanes": 8,
+                "AA_AttributeCount": 9
+            }
+        }
+        Enum {
+            name: "ImageConversionFlags"
+            values: {
+                "ColorMode_Mask": 3,
+                "AutoColor": 0,
+                "ColorOnly": 3,
+                "MonoOnly": 2,
+                "AlphaDither_Mask": 12,
+                "ThresholdAlphaDither": 0,
+                "OrderedAlphaDither": 4,
+                "DiffuseAlphaDither": 8,
+                "NoAlpha": 12,
+                "Dither_Mask": 48,
+                "DiffuseDither": 0,
+                "OrderedDither": 16,
+                "ThresholdDither": 32,
+                "DitherMode_Mask": 192,
+                "AutoDither": 0,
+                "PreferDither": 64,
+                "AvoidDither": 128,
+                "NoOpaqueDetection": 256
+            }
+        }
+        Enum {
+            name: "BGMode"
+            values: {
+                "TransparentMode": 0,
+                "OpaqueMode": 1
+            }
+        }
+        Enum {
+            name: "Key"
+            values: {
+                "Key_Escape": 16777216,
+                "Key_Tab": 16777217,
+                "Key_Backtab": 16777218,
+                "Key_Backspace": 16777219,
+                "Key_Return": 16777220,
+                "Key_Enter": 16777221,
+                "Key_Insert": 16777222,
+                "Key_Delete": 16777223,
+                "Key_Pause": 16777224,
+                "Key_Print": 16777225,
+                "Key_SysReq": 16777226,
+                "Key_Clear": 16777227,
+                "Key_Home": 16777232,
+                "Key_End": 16777233,
+                "Key_Left": 16777234,
+                "Key_Up": 16777235,
+                "Key_Right": 16777236,
+                "Key_Down": 16777237,
+                "Key_PageUp": 16777238,
+                "Key_PageDown": 16777239,
+                "Key_Shift": 16777248,
+                "Key_Control": 16777249,
+                "Key_Meta": 16777250,
+                "Key_Alt": 16777251,
+                "Key_CapsLock": 16777252,
+                "Key_NumLock": 16777253,
+                "Key_ScrollLock": 16777254,
+                "Key_F1": 16777264,
+                "Key_F2": 16777265,
+                "Key_F3": 16777266,
+                "Key_F4": 16777267,
+                "Key_F5": 16777268,
+                "Key_F6": 16777269,
+                "Key_F7": 16777270,
+                "Key_F8": 16777271,
+                "Key_F9": 16777272,
+                "Key_F10": 16777273,
+                "Key_F11": 16777274,
+                "Key_F12": 16777275,
+                "Key_F13": 16777276,
+                "Key_F14": 16777277,
+                "Key_F15": 16777278,
+                "Key_F16": 16777279,
+                "Key_F17": 16777280,
+                "Key_F18": 16777281,
+                "Key_F19": 16777282,
+                "Key_F20": 16777283,
+                "Key_F21": 16777284,
+                "Key_F22": 16777285,
+                "Key_F23": 16777286,
+                "Key_F24": 16777287,
+                "Key_F25": 16777288,
+                "Key_F26": 16777289,
+                "Key_F27": 16777290,
+                "Key_F28": 16777291,
+                "Key_F29": 16777292,
+                "Key_F30": 16777293,
+                "Key_F31": 16777294,
+                "Key_F32": 16777295,
+                "Key_F33": 16777296,
+                "Key_F34": 16777297,
+                "Key_F35": 16777298,
+                "Key_Super_L": 16777299,
+                "Key_Super_R": 16777300,
+                "Key_Menu": 16777301,
+                "Key_Hyper_L": 16777302,
+                "Key_Hyper_R": 16777303,
+                "Key_Help": 16777304,
+                "Key_Direction_L": 16777305,
+                "Key_Direction_R": 16777312,
+                "Key_Space": 32,
+                "Key_Any": 32,
+                "Key_Exclam": 33,
+                "Key_QuoteDbl": 34,
+                "Key_NumberSign": 35,
+                "Key_Dollar": 36,
+                "Key_Percent": 37,
+                "Key_Ampersand": 38,
+                "Key_Apostrophe": 39,
+                "Key_ParenLeft": 40,
+                "Key_ParenRight": 41,
+                "Key_Asterisk": 42,
+                "Key_Plus": 43,
+                "Key_Comma": 44,
+                "Key_Minus": 45,
+                "Key_Period": 46,
+                "Key_Slash": 47,
+                "Key_0": 48,
+                "Key_1": 49,
+                "Key_2": 50,
+                "Key_3": 51,
+                "Key_4": 52,
+                "Key_5": 53,
+                "Key_6": 54,
+                "Key_7": 55,
+                "Key_8": 56,
+                "Key_9": 57,
+                "Key_Colon": 58,
+                "Key_Semicolon": 59,
+                "Key_Less": 60,
+                "Key_Equal": 61,
+                "Key_Greater": 62,
+                "Key_Question": 63,
+                "Key_At": 64,
+                "Key_A": 65,
+                "Key_B": 66,
+                "Key_C": 67,
+                "Key_D": 68,
+                "Key_E": 69,
+                "Key_F": 70,
+                "Key_G": 71,
+                "Key_H": 72,
+                "Key_I": 73,
+                "Key_J": 74,
+                "Key_K": 75,
+                "Key_L": 76,
+                "Key_M": 77,
+                "Key_N": 78,
+                "Key_O": 79,
+                "Key_P": 80,
+                "Key_Q": 81,
+                "Key_R": 82,
+                "Key_S": 83,
+                "Key_T": 84,
+                "Key_U": 85,
+                "Key_V": 86,
+                "Key_W": 87,
+                "Key_X": 88,
+                "Key_Y": 89,
+                "Key_Z": 90,
+                "Key_BracketLeft": 91,
+                "Key_Backslash": 92,
+                "Key_BracketRight": 93,
+                "Key_AsciiCircum": 94,
+                "Key_Underscore": 95,
+                "Key_QuoteLeft": 96,
+                "Key_BraceLeft": 123,
+                "Key_Bar": 124,
+                "Key_BraceRight": 125,
+                "Key_AsciiTilde": 126,
+                "Key_nobreakspace": 160,
+                "Key_exclamdown": 161,
+                "Key_cent": 162,
+                "Key_sterling": 163,
+                "Key_currency": 164,
+                "Key_yen": 165,
+                "Key_brokenbar": 166,
+                "Key_section": 167,
+                "Key_diaeresis": 168,
+                "Key_copyright": 169,
+                "Key_ordfeminine": 170,
+                "Key_guillemotleft": 171,
+                "Key_notsign": 172,
+                "Key_hyphen": 173,
+                "Key_registered": 174,
+                "Key_macron": 175,
+                "Key_degree": 176,
+                "Key_plusminus": 177,
+                "Key_twosuperior": 178,
+                "Key_threesuperior": 179,
+                "Key_acute": 180,
+                "Key_mu": 181,
+                "Key_paragraph": 182,
+                "Key_periodcentered": 183,
+                "Key_cedilla": 184,
+                "Key_onesuperior": 185,
+                "Key_masculine": 186,
+                "Key_guillemotright": 187,
+                "Key_onequarter": 188,
+                "Key_onehalf": 189,
+                "Key_threequarters": 190,
+                "Key_questiondown": 191,
+                "Key_Agrave": 192,
+                "Key_Aacute": 193,
+                "Key_Acircumflex": 194,
+                "Key_Atilde": 195,
+                "Key_Adiaeresis": 196,
+                "Key_Aring": 197,
+                "Key_AE": 198,
+                "Key_Ccedilla": 199,
+                "Key_Egrave": 200,
+                "Key_Eacute": 201,
+                "Key_Ecircumflex": 202,
+                "Key_Ediaeresis": 203,
+                "Key_Igrave": 204,
+                "Key_Iacute": 205,
+                "Key_Icircumflex": 206,
+                "Key_Idiaeresis": 207,
+                "Key_ETH": 208,
+                "Key_Ntilde": 209,
+                "Key_Ograve": 210,
+                "Key_Oacute": 211,
+                "Key_Ocircumflex": 212,
+                "Key_Otilde": 213,
+                "Key_Odiaeresis": 214,
+                "Key_multiply": 215,
+                "Key_Ooblique": 216,
+                "Key_Ugrave": 217,
+                "Key_Uacute": 218,
+                "Key_Ucircumflex": 219,
+                "Key_Udiaeresis": 220,
+                "Key_Yacute": 221,
+                "Key_THORN": 222,
+                "Key_ssharp": 223,
+                "Key_division": 247,
+                "Key_ydiaeresis": 255,
+                "Key_AltGr": 16781571,
+                "Key_Multi_key": 16781600,
+                "Key_Codeinput": 16781623,
+                "Key_SingleCandidate": 16781628,
+                "Key_MultipleCandidate": 16781629,
+                "Key_PreviousCandidate": 16781630,
+                "Key_Mode_switch": 16781694,
+                "Key_Kanji": 16781601,
+                "Key_Muhenkan": 16781602,
+                "Key_Henkan": 16781603,
+                "Key_Romaji": 16781604,
+                "Key_Hiragana": 16781605,
+                "Key_Katakana": 16781606,
+                "Key_Hiragana_Katakana": 16781607,
+                "Key_Zenkaku": 16781608,
+                "Key_Hankaku": 16781609,
+                "Key_Zenkaku_Hankaku": 16781610,
+                "Key_Touroku": 16781611,
+                "Key_Massyo": 16781612,
+                "Key_Kana_Lock": 16781613,
+                "Key_Kana_Shift": 16781614,
+                "Key_Eisu_Shift": 16781615,
+                "Key_Eisu_toggle": 16781616,
+                "Key_Hangul": 16781617,
+                "Key_Hangul_Start": 16781618,
+                "Key_Hangul_End": 16781619,
+                "Key_Hangul_Hanja": 16781620,
+                "Key_Hangul_Jamo": 16781621,
+                "Key_Hangul_Romaja": 16781622,
+                "Key_Hangul_Jeonja": 16781624,
+                "Key_Hangul_Banja": 16781625,
+                "Key_Hangul_PreHanja": 16781626,
+                "Key_Hangul_PostHanja": 16781627,
+                "Key_Hangul_Special": 16781631,
+                "Key_Dead_Grave": 16781904,
+                "Key_Dead_Acute": 16781905,
+                "Key_Dead_Circumflex": 16781906,
+                "Key_Dead_Tilde": 16781907,
+                "Key_Dead_Macron": 16781908,
+                "Key_Dead_Breve": 16781909,
+                "Key_Dead_Abovedot": 16781910,
+                "Key_Dead_Diaeresis": 16781911,
+                "Key_Dead_Abovering": 16781912,
+                "Key_Dead_Doubleacute": 16781913,
+                "Key_Dead_Caron": 16781914,
+                "Key_Dead_Cedilla": 16781915,
+                "Key_Dead_Ogonek": 16781916,
+                "Key_Dead_Iota": 16781917,
+                "Key_Dead_Voiced_Sound": 16781918,
+                "Key_Dead_Semivoiced_Sound": 16781919,
+                "Key_Dead_Belowdot": 16781920,
+                "Key_Dead_Hook": 16781921,
+                "Key_Dead_Horn": 16781922,
+                "Key_Back": 16777313,
+                "Key_Forward": 16777314,
+                "Key_Stop": 16777315,
+                "Key_Refresh": 16777316,
+                "Key_VolumeDown": 16777328,
+                "Key_VolumeMute": 16777329,
+                "Key_VolumeUp": 16777330,
+                "Key_BassBoost": 16777331,
+                "Key_BassUp": 16777332,
+                "Key_BassDown": 16777333,
+                "Key_TrebleUp": 16777334,
+                "Key_TrebleDown": 16777335,
+                "Key_MediaPlay": 16777344,
+                "Key_MediaStop": 16777345,
+                "Key_MediaPrevious": 16777346,
+                "Key_MediaNext": 16777347,
+                "Key_MediaRecord": 16777348,
+                "Key_MediaPause": 16777349,
+                "Key_MediaTogglePlayPause": 16777350,
+                "Key_HomePage": 16777360,
+                "Key_Favorites": 16777361,
+                "Key_Search": 16777362,
+                "Key_Standby": 16777363,
+                "Key_OpenUrl": 16777364,
+                "Key_LaunchMail": 16777376,
+                "Key_LaunchMedia": 16777377,
+                "Key_Launch0": 16777378,
+                "Key_Launch1": 16777379,
+                "Key_Launch2": 16777380,
+                "Key_Launch3": 16777381,
+                "Key_Launch4": 16777382,
+                "Key_Launch5": 16777383,
+                "Key_Launch6": 16777384,
+                "Key_Launch7": 16777385,
+                "Key_Launch8": 16777386,
+                "Key_Launch9": 16777387,
+                "Key_LaunchA": 16777388,
+                "Key_LaunchB": 16777389,
+                "Key_LaunchC": 16777390,
+                "Key_LaunchD": 16777391,
+                "Key_LaunchE": 16777392,
+                "Key_LaunchF": 16777393,
+                "Key_MonBrightnessUp": 16777394,
+                "Key_MonBrightnessDown": 16777395,
+                "Key_KeyboardLightOnOff": 16777396,
+                "Key_KeyboardBrightnessUp": 16777397,
+                "Key_KeyboardBrightnessDown": 16777398,
+                "Key_PowerOff": 16777399,
+                "Key_WakeUp": 16777400,
+                "Key_Eject": 16777401,
+                "Key_ScreenSaver": 16777402,
+                "Key_WWW": 16777403,
+                "Key_Memo": 16777404,
+                "Key_LightBulb": 16777405,
+                "Key_Shop": 16777406,
+                "Key_History": 16777407,
+                "Key_AddFavorite": 16777408,
+                "Key_HotLinks": 16777409,
+                "Key_BrightnessAdjust": 16777410,
+                "Key_Finance": 16777411,
+                "Key_Community": 16777412,
+                "Key_AudioRewind": 16777413,
+                "Key_BackForward": 16777414,
+                "Key_ApplicationLeft": 16777415,
+                "Key_ApplicationRight": 16777416,
+                "Key_Book": 16777417,
+                "Key_CD": 16777418,
+                "Key_Calculator": 16777419,
+                "Key_ToDoList": 16777420,
+                "Key_ClearGrab": 16777421,
+                "Key_Close": 16777422,
+                "Key_Copy": 16777423,
+                "Key_Cut": 16777424,
+                "Key_Display": 16777425,
+                "Key_DOS": 16777426,
+                "Key_Documents": 16777427,
+                "Key_Excel": 16777428,
+                "Key_Explorer": 16777429,
+                "Key_Game": 16777430,
+                "Key_Go": 16777431,
+                "Key_iTouch": 16777432,
+                "Key_LogOff": 16777433,
+                "Key_Market": 16777434,
+                "Key_Meeting": 16777435,
+                "Key_MenuKB": 16777436,
+                "Key_MenuPB": 16777437,
+                "Key_MySites": 16777438,
+                "Key_News": 16777439,
+                "Key_OfficeHome": 16777440,
+                "Key_Option": 16777441,
+                "Key_Paste": 16777442,
+                "Key_Phone": 16777443,
+                "Key_Calendar": 16777444,
+                "Key_Reply": 16777445,
+                "Key_Reload": 16777446,
+                "Key_RotateWindows": 16777447,
+                "Key_RotationPB": 16777448,
+                "Key_RotationKB": 16777449,
+                "Key_Save": 16777450,
+                "Key_Send": 16777451,
+                "Key_Spell": 16777452,
+                "Key_SplitScreen": 16777453,
+                "Key_Support": 16777454,
+                "Key_TaskPane": 16777455,
+                "Key_Terminal": 16777456,
+                "Key_Tools": 16777457,
+                "Key_Travel": 16777458,
+                "Key_Video": 16777459,
+                "Key_Word": 16777460,
+                "Key_Xfer": 16777461,
+                "Key_ZoomIn": 16777462,
+                "Key_ZoomOut": 16777463,
+                "Key_Away": 16777464,
+                "Key_Messenger": 16777465,
+                "Key_WebCam": 16777466,
+                "Key_MailForward": 16777467,
+                "Key_Pictures": 16777468,
+                "Key_Music": 16777469,
+                "Key_Battery": 16777470,
+                "Key_Bluetooth": 16777471,
+                "Key_WLAN": 16777472,
+                "Key_UWB": 16777473,
+                "Key_AudioForward": 16777474,
+                "Key_AudioRepeat": 16777475,
+                "Key_AudioRandomPlay": 16777476,
+                "Key_Subtitle": 16777477,
+                "Key_AudioCycleTrack": 16777478,
+                "Key_Time": 16777479,
+                "Key_Hibernate": 16777480,
+                "Key_View": 16777481,
+                "Key_TopMenu": 16777482,
+                "Key_PowerDown": 16777483,
+                "Key_Suspend": 16777484,
+                "Key_ContrastAdjust": 16777485,
+                "Key_LaunchG": 16777486,
+                "Key_LaunchH": 16777487,
+                "Key_MediaLast": 16842751,
+                "Key_Select": 16842752,
+                "Key_Yes": 16842753,
+                "Key_No": 16842754,
+                "Key_Cancel": 16908289,
+                "Key_Printer": 16908290,
+                "Key_Execute": 16908291,
+                "Key_Sleep": 16908292,
+                "Key_Play": 16908293,
+                "Key_Zoom": 16908294,
+                "Key_Context1": 17825792,
+                "Key_Context2": 17825793,
+                "Key_Context3": 17825794,
+                "Key_Context4": 17825795,
+                "Key_Call": 17825796,
+                "Key_Hangup": 17825797,
+                "Key_Flip": 17825798,
+                "Key_ToggleCallHangup": 17825799,
+                "Key_VoiceDial": 17825800,
+                "Key_LastNumberRedial": 17825801,
+                "Key_Camera": 17825824,
+                "Key_CameraFocus": 17825825,
+                "Key_unknown": 33554431
+            }
+        }
+        Enum {
+            name: "ArrowType"
+            values: {
+                "NoArrow": 0,
+                "UpArrow": 1,
+                "DownArrow": 2,
+                "LeftArrow": 3,
+                "RightArrow": 4
+            }
+        }
+        Enum {
+            name: "PenStyle"
+            values: {
+                "NoPen": 0,
+                "SolidLine": 1,
+                "DashLine": 2,
+                "DotLine": 3,
+                "DashDotLine": 4,
+                "DashDotDotLine": 5,
+                "CustomDashLine": 6
+            }
+        }
+        Enum {
+            name: "PenCapStyle"
+            values: {
+                "FlatCap": 0,
+                "SquareCap": 16,
+                "RoundCap": 32,
+                "MPenCapStyle": 48
+            }
+        }
+        Enum {
+            name: "PenJoinStyle"
+            values: {
+                "MiterJoin": 0,
+                "BevelJoin": 64,
+                "RoundJoin": 128,
+                "SvgMiterJoin": 256,
+                "MPenJoinStyle": 448
+            }
+        }
+        Enum {
+            name: "BrushStyle"
+            values: {
+                "NoBrush": 0,
+                "SolidPattern": 1,
+                "Dense1Pattern": 2,
+                "Dense2Pattern": 3,
+                "Dense3Pattern": 4,
+                "Dense4Pattern": 5,
+                "Dense5Pattern": 6,
+                "Dense6Pattern": 7,
+                "Dense7Pattern": 8,
+                "HorPattern": 9,
+                "VerPattern": 10,
+                "CrossPattern": 11,
+                "BDiagPattern": 12,
+                "FDiagPattern": 13,
+                "DiagCrossPattern": 14,
+                "LinearGradientPattern": 15,
+                "RadialGradientPattern": 16,
+                "ConicalGradientPattern": 17,
+                "TexturePattern": 24
+            }
+        }
+        Enum {
+            name: "SizeMode"
+            values: {
+                "AbsoluteSize": 0,
+                "RelativeSize": 1
+            }
+        }
+        Enum {
+            name: "CursorShape"
+            values: {
+                "ArrowCursor": 0,
+                "UpArrowCursor": 1,
+                "CrossCursor": 2,
+                "WaitCursor": 3,
+                "IBeamCursor": 4,
+                "SizeVerCursor": 5,
+                "SizeHorCursor": 6,
+                "SizeBDiagCursor": 7,
+                "SizeFDiagCursor": 8,
+                "SizeAllCursor": 9,
+                "BlankCursor": 10,
+                "SplitVCursor": 11,
+                "SplitHCursor": 12,
+                "PointingHandCursor": 13,
+                "ForbiddenCursor": 14,
+                "WhatsThisCursor": 15,
+                "BusyCursor": 16,
+                "OpenHandCursor": 17,
+                "ClosedHandCursor": 18,
+                "DragCopyCursor": 19,
+                "DragMoveCursor": 20,
+                "DragLinkCursor": 21,
+                "LastCursor": 21,
+                "BitmapCursor": 24,
+                "CustomCursor": 25
+            }
+        }
+        Enum {
+            name: "TextFormat"
+            values: {
+                "PlainText": 0,
+                "RichText": 1,
+                "AutoText": 2,
+                "LogText": 3
+            }
+        }
+        Enum {
+            name: "AspectRatioMode"
+            values: {
+                "IgnoreAspectRatio": 0,
+                "KeepAspectRatio": 1,
+                "KeepAspectRatioByExpanding": 2
+            }
+        }
+        Enum {
+            name: "DockWidgetArea"
+            values: {
+                "LeftDockWidgetArea": 1,
+                "RightDockWidgetArea": 2,
+                "TopDockWidgetArea": 4,
+                "BottomDockWidgetArea": 8,
+                "DockWidgetArea_Mask": 15,
+                "AllDockWidgetAreas": 15,
+                "NoDockWidgetArea": 0
+            }
+        }
+        Enum {
+            name: "DockWidgetAreas"
+            values: {
+                "LeftDockWidgetArea": 1,
+                "RightDockWidgetArea": 2,
+                "TopDockWidgetArea": 4,
+                "BottomDockWidgetArea": 8,
+                "DockWidgetArea_Mask": 15,
+                "AllDockWidgetAreas": 15,
+                "NoDockWidgetArea": 0
+            }
+        }
+        Enum {
+            name: "ToolBarArea"
+            values: {
+                "LeftToolBarArea": 1,
+                "RightToolBarArea": 2,
+                "TopToolBarArea": 4,
+                "BottomToolBarArea": 8,
+                "ToolBarArea_Mask": 15,
+                "AllToolBarAreas": 15,
+                "NoToolBarArea": 0
+            }
+        }
+        Enum {
+            name: "ToolBarAreas"
+            values: {
+                "LeftToolBarArea": 1,
+                "RightToolBarArea": 2,
+                "TopToolBarArea": 4,
+                "BottomToolBarArea": 8,
+                "ToolBarArea_Mask": 15,
+                "AllToolBarAreas": 15,
+                "NoToolBarArea": 0
+            }
+        }
+        Enum {
+            name: "DateFormat"
+            values: {
+                "TextDate": 0,
+                "ISODate": 1,
+                "SystemLocaleDate": 2,
+                "LocalDate": 2,
+                "LocaleDate": 3,
+                "SystemLocaleShortDate": 4,
+                "SystemLocaleLongDate": 5,
+                "DefaultLocaleShortDate": 6,
+                "DefaultLocaleLongDate": 7
+            }
+        }
+        Enum {
+            name: "TimeSpec"
+            values: {
+                "LocalTime": 0,
+                "UTC": 1,
+                "OffsetFromUTC": 2
+            }
+        }
+        Enum {
+            name: "DayOfWeek"
+            values: {
+                "Monday": 1,
+                "Tuesday": 2,
+                "Wednesday": 3,
+                "Thursday": 4,
+                "Friday": 5,
+                "Saturday": 6,
+                "Sunday": 7
+            }
+        }
+        Enum {
+            name: "ScrollBarPolicy"
+            values: {
+                "ScrollBarAsNeeded": 0,
+                "ScrollBarAlwaysOff": 1,
+                "ScrollBarAlwaysOn": 2
+            }
+        }
+        Enum {
+            name: "CaseSensitivity"
+            values: {
+                "CaseInsensitive": 0,
+                "CaseSensitive": 1
+            }
+        }
+        Enum {
+            name: "Corner"
+            values: {
+                "TopLeftCorner": 0,
+                "TopRightCorner": 1,
+                "BottomLeftCorner": 2,
+                "BottomRightCorner": 3
+            }
+        }
+        Enum {
+            name: "ConnectionType"
+            values: {
+                "AutoConnection": 0,
+                "DirectConnection": 1,
+                "QueuedConnection": 2,
+                "AutoCompatConnection": 3,
+                "BlockingQueuedConnection": 4,
+                "UniqueConnection": 128
+            }
+        }
+        Enum {
+            name: "ShortcutContext"
+            values: {
+                "WidgetShortcut": 0,
+                "WindowShortcut": 1,
+                "ApplicationShortcut": 2,
+                "WidgetWithChildrenShortcut": 3
+            }
+        }
+        Enum {
+            name: "FillRule"
+            values: {
+                "OddEvenFill": 0,
+                "WindingFill": 1
+            }
+        }
+        Enum {
+            name: "MaskMode"
+            values: {
+                "MaskInColor": 0,
+                "MaskOutColor": 1
+            }
+        }
+        Enum {
+            name: "ClipOperation"
+            values: {
+                "NoClip": 0,
+                "ReplaceClip": 1,
+                "IntersectClip": 2,
+                "UniteClip": 3
+            }
+        }
+        Enum {
+            name: "ItemSelectionMode"
+            values: {
+                "ContainsItemShape": 0,
+                "IntersectsItemShape": 1,
+                "ContainsItemBoundingRect": 2,
+                "IntersectsItemBoundingRect": 3
+            }
+        }
+        Enum {
+            name: "TransformationMode"
+            values: {
+                "FastTransformation": 0,
+                "SmoothTransformation": 1
+            }
+        }
+        Enum {
+            name: "Axis"
+            values: {
+                "XAxis": 0,
+                "YAxis": 1,
+                "ZAxis": 2
+            }
+        }
+        Enum {
+            name: "ContextMenuPolicy"
+            values: {
+                "NoContextMenu": 0,
+                "DefaultContextMenu": 1,
+                "ActionsContextMenu": 2,
+                "CustomContextMenu": 3,
+                "PreventContextMenu": 4
+            }
+        }
+        Enum {
+            name: "InputMethodHint"
+            values: {
+                "ImhNone": 0,
+                "ImhHiddenText": 1,
+                "ImhNoAutoUppercase": 2,
+                "ImhPreferNumbers": 4,
+                "ImhPreferUppercase": 8,
+                "ImhPreferLowercase": 16,
+                "ImhNoPredictiveText": 32,
+                "ImhDigitsOnly": 65536,
+                "ImhFormattedNumbersOnly": 131072,
+                "ImhUppercaseOnly": 262144,
+                "ImhLowercaseOnly": 524288,
+                "ImhDialableCharactersOnly": 1048576,
+                "ImhEmailCharactersOnly": 2097152,
+                "ImhUrlCharactersOnly": 4194304,
+                "ImhExclusiveInputMask": -65536
+            }
+        }
+        Enum {
+            name: "InputMethodHints"
+            values: {
+                "ImhNone": 0,
+                "ImhHiddenText": 1,
+                "ImhNoAutoUppercase": 2,
+                "ImhPreferNumbers": 4,
+                "ImhPreferUppercase": 8,
+                "ImhPreferLowercase": 16,
+                "ImhNoPredictiveText": 32,
+                "ImhDigitsOnly": 65536,
+                "ImhFormattedNumbersOnly": 131072,
+                "ImhUppercaseOnly": 262144,
+                "ImhLowercaseOnly": 524288,
+                "ImhDialableCharactersOnly": 1048576,
+                "ImhEmailCharactersOnly": 2097152,
+                "ImhUrlCharactersOnly": 4194304,
+                "ImhExclusiveInputMask": -65536
+            }
+        }
+        Enum {
+            name: "ToolButtonStyle"
+            values: {
+                "ToolButtonIconOnly": 0,
+                "ToolButtonTextOnly": 1,
+                "ToolButtonTextBesideIcon": 2,
+                "ToolButtonTextUnderIcon": 3,
+                "ToolButtonFollowStyle": 4
+            }
+        }
+        Enum {
+            name: "LayoutDirection"
+            values: {
+                "LeftToRight": 0,
+                "RightToLeft": 1,
+                "LayoutDirectionAuto": 2
+            }
+        }
+        Enum {
+            name: "DropAction"
+            values: {
+                "CopyAction": 1,
+                "MoveAction": 2,
+                "LinkAction": 4,
+                "ActionMask": 255,
+                "TargetMoveAction": 32770,
+                "IgnoreAction": 0
+            }
+        }
+        Enum {
+            name: "DropActions"
+            values: {
+                "CopyAction": 1,
+                "MoveAction": 2,
+                "LinkAction": 4,
+                "ActionMask": 255,
+                "TargetMoveAction": 32770,
+                "IgnoreAction": 0
+            }
+        }
+        Enum {
+            name: "CheckState"
+            values: {
+                "Unchecked": 0,
+                "PartiallyChecked": 1,
+                "Checked": 2
+            }
+        }
+        Enum {
+            name: "ItemFlags"
+            values: {
+                "NoItemFlags": 0,
+                "ItemIsSelectable": 1,
+                "ItemIsEditable": 2,
+                "ItemIsDragEnabled": 4,
+                "ItemIsDropEnabled": 8,
+                "ItemIsUserCheckable": 16,
+                "ItemIsEnabled": 32,
+                "ItemIsTristate": 64
+            }
+        }
+        Enum {
+            name: "MatchFlags"
+            values: {
+                "MatchExactly": 0,
+                "MatchContains": 1,
+                "MatchStartsWith": 2,
+                "MatchEndsWith": 3,
+                "MatchRegExp": 4,
+                "MatchWildcard": 5,
+                "MatchFixedString": 8,
+                "MatchCaseSensitive": 16,
+                "MatchWrap": 32,
+                "MatchRecursive": 64
+            }
+        }
+        Enum {
+            name: "WindowModality"
+            values: {
+                "NonModal": 0,
+                "WindowModal": 1,
+                "ApplicationModal": 2
+            }
+        }
+        Enum {
+            name: "TextInteractionFlag"
+            values: {
+                "NoTextInteraction": 0,
+                "TextSelectableByMouse": 1,
+                "TextSelectableByKeyboard": 2,
+                "LinksAccessibleByMouse": 4,
+                "LinksAccessibleByKeyboard": 8,
+                "TextEditable": 16,
+                "TextEditorInteraction": 19,
+                "TextBrowserInteraction": 13
+            }
+        }
+        Enum {
+            name: "TextInteractionFlags"
+            values: {
+                "NoTextInteraction": 0,
+                "TextSelectableByMouse": 1,
+                "TextSelectableByKeyboard": 2,
+                "LinksAccessibleByMouse": 4,
+                "LinksAccessibleByKeyboard": 8,
+                "TextEditable": 16,
+                "TextEditorInteraction": 19,
+                "TextBrowserInteraction": 13
+            }
+        }
+        Enum {
+            name: "SizeHint"
+            values: {
+                "MinimumSize": 0,
+                "PreferredSize": 1,
+                "MaximumSize": 2,
+                "MinimumDescent": 3,
+                "NSizeHints": 4
+            }
+        }
+        Enum {
+            name: "GestureState"
+            values: {
+                "NoGesture": 0,
+                "GestureStarted": 1,
+                "GestureUpdated": 2,
+                "GestureFinished": 3,
+                "GestureCanceled": 4
+            }
+        }
+        Enum {
+            name: "GestureType"
+            values: {
+                "TapGesture": 1,
+                "TapAndHoldGesture": 2,
+                "PanGesture": 3,
+                "PinchGesture": 4,
+                "SwipeGesture": 5,
+                "CustomGesture": 256,
+                "LastGestureType": -1
+            }
+        }
+    }
+    Component {
+        name: "__extended__.QGraphicsWidget"
+        defaultProperty: "children"
+        prototype: "QGraphicsObject"
+        exports: [
+            "Qt/QGraphicsWidget 4.7",
+            "QtQuick/QGraphicsWidget 1.0"
+        ]
+        Property { name: "palette"; type: "QPalette" }
+        Property { name: "font"; type: "QFont" }
+        Property { name: "layoutDirection"; type: "Qt::LayoutDirection" }
+        Property { name: "size"; type: "QSizeF" }
+        Property { name: "minimumSize"; type: "QSizeF" }
+        Property { name: "preferredSize"; type: "QSizeF" }
+        Property { name: "maximumSize"; type: "QSizeF" }
+        Property { name: "sizePolicy"; type: "QSizePolicy" }
+        Property { name: "focusPolicy"; type: "Qt::FocusPolicy" }
+        Property { name: "windowFlags"; type: "Qt::WindowFlags" }
+        Property { name: "windowTitle"; type: "string" }
+        Property { name: "geometry"; type: "QRectF" }
+        Property { name: "autoFillBackground"; type: "bool" }
+        Property { name: "layout"; type: "QGraphicsLayout"; isPointer: true }
+        Signal { name: "geometryChanged" }
+        Signal { name: "layoutChanged" }
+        Method { name: "close"; type: "bool" }
+    }
+    Component { name: "QEasingCurve"; prototype: "QDeclarativeEasingValueType" }
+}
diff --git a/share/qtcreator/qml-type-descriptions/qtwebkit.qmltypes b/share/qtcreator/qml-type-descriptions/qtwebkit.qmltypes
new file mode 100644
index 0000000000000000000000000000000000000000..693d074e82a6996ec8e7b0ac6c852bdb0d0b182f
--- /dev/null
+++ b/share/qtcreator/qml-type-descriptions/qtwebkit.qmltypes
@@ -0,0 +1,209 @@
+import QtQuick.tooling 1.0
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+
+Module {
+    Component {
+        name: "QAction"
+        prototype: "QObject"
+        Enum {
+            name: "MenuRole"
+            values: {
+                "NoRole": 0,
+                "TextHeuristicRole": 1,
+                "ApplicationSpecificRole": 2,
+                "AboutQtRole": 3,
+                "AboutRole": 4,
+                "PreferencesRole": 5,
+                "QuitRole": 6
+            }
+        }
+        Enum {
+            name: "SoftKeyRole"
+            values: {
+                "NoSoftKey": 0,
+                "PositiveSoftKey": 1,
+                "NegativeSoftKey": 2,
+                "SelectSoftKey": 3
+            }
+        }
+        Enum {
+            name: "Priority"
+            values: {
+                "LowPriority": 0,
+                "NormalPriority": 128,
+                "HighPriority": 256
+            }
+        }
+        Property { name: "checkable"; type: "bool" }
+        Property { name: "checked"; type: "bool" }
+        Property { name: "enabled"; type: "bool" }
+        Property { name: "icon"; type: "QIcon" }
+        Property { name: "text"; type: "string" }
+        Property { name: "iconText"; type: "string" }
+        Property { name: "toolTip"; type: "string" }
+        Property { name: "statusTip"; type: "string" }
+        Property { name: "whatsThis"; type: "string" }
+        Property { name: "font"; type: "QFont" }
+        Property { name: "shortcut"; type: "QKeySequence" }
+        Property { name: "shortcutContext"; type: "Qt::ShortcutContext" }
+        Property { name: "autoRepeat"; type: "bool" }
+        Property { name: "visible"; type: "bool" }
+        Property { name: "menuRole"; type: "MenuRole" }
+        Property { name: "softKeyRole"; type: "SoftKeyRole" }
+        Property { name: "iconVisibleInMenu"; type: "bool" }
+        Property { name: "priority"; type: "Priority" }
+        Signal { name: "changed" }
+        Signal {
+            name: "triggered"
+            Parameter { name: "checked"; type: "bool" }
+        }
+        Signal { name: "triggered" }
+        Signal { name: "hovered" }
+        Signal {
+            name: "toggled"
+            Parameter { type: "bool" }
+        }
+        Method { name: "trigger" }
+        Method { name: "hover" }
+        Method {
+            name: "setChecked"
+            Parameter { type: "bool" }
+        }
+        Method { name: "toggle" }
+        Method {
+            name: "setEnabled"
+            Parameter { type: "bool" }
+        }
+        Method {
+            name: "setDisabled"
+            Parameter { name: "b"; type: "bool" }
+        }
+        Method {
+            name: "setVisible"
+            Parameter { type: "bool" }
+        }
+    }
+    Component {
+        name: "QDeclarativeWebSettings"
+        prototype: "QObject"
+        Property { name: "standardFontFamily"; type: "string" }
+        Property { name: "fixedFontFamily"; type: "string" }
+        Property { name: "serifFontFamily"; type: "string" }
+        Property { name: "sansSerifFontFamily"; type: "string" }
+        Property { name: "cursiveFontFamily"; type: "string" }
+        Property { name: "fantasyFontFamily"; type: "string" }
+        Property { name: "minimumFontSize"; type: "int" }
+        Property { name: "minimumLogicalFontSize"; type: "int" }
+        Property { name: "defaultFontSize"; type: "int" }
+        Property { name: "defaultFixedFontSize"; type: "int" }
+        Property { name: "autoLoadImages"; type: "bool" }
+        Property { name: "javascriptEnabled"; type: "bool" }
+        Property { name: "javaEnabled"; type: "bool" }
+        Property { name: "pluginsEnabled"; type: "bool" }
+        Property { name: "privateBrowsingEnabled"; type: "bool" }
+        Property { name: "javascriptCanOpenWindows"; type: "bool" }
+        Property { name: "javascriptCanAccessClipboard"; type: "bool" }
+        Property { name: "developerExtrasEnabled"; type: "bool" }
+        Property { name: "linksIncludedInFocusChain"; type: "bool" }
+        Property { name: "zoomTextOnly"; type: "bool" }
+        Property { name: "printElementBackgrounds"; type: "bool" }
+        Property { name: "offlineStorageDatabaseEnabled"; type: "bool" }
+        Property { name: "offlineWebApplicationCacheEnabled"; type: "bool" }
+        Property { name: "localStorageDatabaseEnabled"; type: "bool" }
+        Property { name: "localContentCanAccessRemoteUrls"; type: "bool" }
+    }
+    Component {
+        name: "QDeclarativeWebView"
+        defaultProperty: "data"
+        prototype: "QDeclarativeItem"
+        exports: [
+            "QtWebKit/WebView 1.0"
+        ]
+        Enum {
+            name: "Status"
+            values: {
+                "Null": 0,
+                "Ready": 1,
+                "Loading": 2,
+                "Error": 3
+            }
+        }
+        Property { name: "title"; type: "string"; isReadonly: true }
+        Property { name: "icon"; type: "QPixmap"; isReadonly: true }
+        Property { name: "statusText"; type: "string"; isReadonly: true }
+        Property { name: "html"; type: "string" }
+        Property { name: "pressGrabTime"; type: "int" }
+        Property { name: "preferredWidth"; type: "int" }
+        Property { name: "preferredHeight"; type: "int" }
+        Property { name: "url"; type: "QUrl" }
+        Property { name: "progress"; type: "qreal"; isReadonly: true }
+        Property { name: "status"; type: "Status"; isReadonly: true }
+        Property { name: "reload"; type: "QAction"; isReadonly: true; isPointer: true }
+        Property { name: "back"; type: "QAction"; isReadonly: true; isPointer: true }
+        Property { name: "forward"; type: "QAction"; isReadonly: true; isPointer: true }
+        Property { name: "stop"; type: "QAction"; isReadonly: true; isPointer: true }
+        Property { name: "settings"; type: "QDeclarativeWebSettings"; isReadonly: true; isPointer: true }
+        Property { name: "javaScriptWindowObjects"; type: "QObject"; isList: true; isReadonly: true }
+        Property { name: "newWindowComponent"; type: "QDeclarativeComponent"; isPointer: true }
+        Property { name: "newWindowParent"; type: "QDeclarativeItem"; isPointer: true }
+        Property { name: "renderingEnabled"; type: "bool" }
+        Property { name: "contentsSize"; type: "QSize"; isReadonly: true }
+        Property { name: "contentsScale"; type: "qreal" }
+        Signal { name: "preferredWidthChanged" }
+        Signal { name: "preferredHeightChanged" }
+        Signal { name: "urlChanged" }
+        Signal { name: "progressChanged" }
+        Signal {
+            name: "statusChanged"
+            Parameter { type: "Status" }
+        }
+        Signal {
+            name: "titleChanged"
+            Parameter { type: "string" }
+        }
+        Signal { name: "iconChanged" }
+        Signal { name: "statusTextChanged" }
+        Signal { name: "htmlChanged" }
+        Signal { name: "pressGrabTimeChanged" }
+        Signal { name: "newWindowComponentChanged" }
+        Signal { name: "newWindowParentChanged" }
+        Signal { name: "renderingEnabledChanged" }
+        Signal {
+            name: "contentsSizeChanged"
+            Parameter { type: "QSize" }
+        }
+        Signal { name: "contentsScaleChanged" }
+        Signal { name: "loadStarted" }
+        Signal { name: "loadFinished" }
+        Signal { name: "loadFailed" }
+        Signal {
+            name: "doubleClick"
+            Parameter { name: "clickX"; type: "int" }
+            Parameter { name: "clickY"; type: "int" }
+        }
+        Signal {
+            name: "zoomTo"
+            Parameter { name: "zoom"; type: "qreal" }
+            Parameter { name: "centerX"; type: "int" }
+            Parameter { name: "centerY"; type: "int" }
+        }
+        Signal {
+            name: "alert"
+            Parameter { name: "message"; type: "string" }
+        }
+        Method {
+            name: "evaluateJavaScript"
+            type: "QVariant"
+            Parameter { type: "string" }
+        }
+        Method {
+            name: "heuristicZoom"
+            type: "bool"
+            Parameter { name: "clickX"; type: "int" }
+            Parameter { name: "clickY"; type: "int" }
+            Parameter { name: "maxzoom"; type: "qreal" }
+        }
+    }
+}
diff --git a/share/qtcreator/qml/qmldump/main.cpp b/share/qtcreator/qml/qmldump/main.cpp
index 6f9abfea05dbd6deb2fa712ad67a8e957a3daa20..dd7f5692705f25acc19c89d3c611205d1733d555 100644
--- a/share/qtcreator/qml/qmldump/main.cpp
+++ b/share/qtcreator/qml/qmldump/main.cpp
@@ -201,7 +201,8 @@ public:
 
             foreach (const QDeclarativeType *qmlTy, qmlTypes) {
                 QString qmlTyName = qmlTy->qmlTypeName();
-                if (qmlTyName.startsWith(relocatableModuleUri + QLatin1Char('/'))) {
+                if (!relocatableModuleUri.isNull()
+                        && qmlTyName.startsWith(relocatableModuleUri + QLatin1Char('/'))) {
                     qmlTyName.remove(0, relocatableModuleUri.size() + 1);
                 }
                 exports += enquote(QString("%1 %2.%3").arg(
@@ -359,6 +360,15 @@ void sigSegvHandler(int) {
 }
 #endif
 
+void printUsage(const QString &appName)
+{
+    qWarning() << qPrintable(QString(
+                                 "Usage: %1 [--notrelocatable] module.uri version [module/import/path]\n"
+                                 "       %1 --builtins\n"
+                                 "Example: %1 Qt.labs.particles 4.7 /home/user/dev/qt-install/imports").arg(
+                                 appName));
+}
+
 int main(int argc, char *argv[])
 {
 #ifdef Q_OS_UNIX
@@ -380,23 +390,39 @@ int main(int argc, char *argv[])
     QApplication app(argc, argv);
     const QStringList args = app.arguments();
     const QString appName = QFileInfo(app.applicationFilePath()).baseName();
-    if (args.size() != 3 && args.size() != 4 && !(args.size() == 2 && args.at(1) == QLatin1String("--builtins"))) {
-        qWarning() << qPrintable(QString(
-                                     "Usage: %1 module.uri version [module/import/path]\n"
-                                     "       %1 --builtins\n"
-                                     "Example: %1 Qt.labs.particles 4.7 /home/user/dev/qt-install/imports").arg(
-                                     appName));
+    if (!(args.size() >= 3 || (args.size() == 2 && args.at(1) == QLatin1String("--builtins")))) {
+        printUsage(appName);
         return EXIT_INVALIDARGUMENTS;
     }
 
     QString pluginImportUri;
     QString pluginImportVersion;
     QString pluginImportPath;
-    if (args.size() > 2) {
-        pluginImportUri = args[1];
-        pluginImportVersion = args[2];
-        if (args.size() >= 4)
-            pluginImportPath = args[3];
+    bool relocatable = true;
+    if (args.size() >= 3) {
+        QStringList positionalArgs;
+        foreach (const QString &arg, args) {
+            if (!arg.startsWith("--")) {
+                positionalArgs.append(arg);
+                continue;
+            }
+
+            if (arg == QLatin1String("--notrelocatable")) {
+                relocatable = false;
+            } else {
+                qWarning() << "Invalid argument: " << arg;
+                return EXIT_INVALIDARGUMENTS;
+            }
+        }
+
+        if (positionalArgs.size() != 3 && positionalArgs.size() != 4) {
+            qWarning() << "Incorrect number of positional arguments";
+            return EXIT_INVALIDARGUMENTS;
+        }
+        pluginImportUri = positionalArgs[1];
+        pluginImportVersion = positionalArgs[2];
+        if (positionalArgs.size() >= 4)
+            pluginImportPath = positionalArgs[3];
     }
 
     QDeclarativeView view;
@@ -470,7 +496,8 @@ int main(int argc, char *argv[])
         nameToMeta.insert(convertToId(meta->className()), meta);
 
     Dumper dumper(&qml);
-    dumper.setRelocatableModuleUri(pluginImportUri);
+    if (relocatable)
+        dumper.setRelocatableModuleUri(pluginImportUri);
     foreach (const QMetaObject *meta, nameToMeta) {
         dumper.dump(meta);
     }
diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp
index 2e540f37b702ea45a0526bd1398445512d7278a7..ae7d8bad8e48d783143ecea348168de794429ba7 100644
--- a/src/libs/qmljs/qmljsinterpreter.cpp
+++ b/src/libs/qmljs/qmljsinterpreter.cpp
@@ -36,6 +36,7 @@
 #include "qmljslink.h"
 #include "qmljsbind.h"
 #include "qmljsscopebuilder.h"
+#include "qmljstypedescriptionreader.h"
 #include "parser/qmljsast_p.h"
 
 #include <languageutils/fakemetaobject.h>
@@ -1943,45 +1944,48 @@ const Value *Function::invoke(const Activation *activation) const
 // typing environment
 ////////////////////////////////////////////////////////////////////////////////
 
-QList<FakeMetaObject::ConstPtr> CppQmlTypesLoader::builtinObjects;
+QHash<QString, FakeMetaObject::ConstPtr> CppQmlTypesLoader::builtinObjects;
 
-QStringList CppQmlTypesLoader::loadXml(const QFileInfoList &xmlFiles)
+QStringList CppQmlTypesLoader::loadQmlTypes(const QFileInfoList &qmlTypeFiles)
 {
-    QMap<QString, FakeMetaObject::Ptr> newObjects;
+    QHash<QString, FakeMetaObject::Ptr> newObjects;
     QStringList errorMsgs;
 
-    foreach (const QFileInfo &xmlFile, xmlFiles) {
-        QFile file(xmlFile.absoluteFilePath());
+    foreach (const QFileInfo &qmlTypeFile, qmlTypeFiles) {
+        QFile file(qmlTypeFile.absoluteFilePath());
         if (file.open(QIODevice::ReadOnly)) {
-            QmlXmlReader read(&file);
-            if (!read(&newObjects)) {
-                errorMsgs.append(read.errorMessage());
-            }
+            QString contents = QString::fromUtf8(file.readAll());
             file.close();
+
+            QmlJS::TypeDescriptionReader reader(contents);
+            if (!reader(&newObjects)) {
+                errorMsgs.append(reader.errorMessage());
+            }
         } else {
-            errorMsgs.append(QmlXmlReader::tr("%1: %2").arg(xmlFile.absoluteFilePath(),
-                                                            file.errorString()));
+            errorMsgs.append(QmlJS::TypeDescriptionReader::tr("%1: %2")
+                             .arg(qmlTypeFile.absoluteFilePath(),
+                                  file.errorString()));
         }
     }
 
     if (errorMsgs.isEmpty()) {
         setSuperClasses(&newObjects);
 
-        // we need to go from QList<T *> of newObjects.values() to QList<const T *>
+        // we need to go from QHash<K, T::Ptr> to QHash<K, T::ConstPtr>
         // and there seems to be no better way
-        QMapIterator<QString, FakeMetaObject::Ptr> it(newObjects);
+        QHashIterator<QString, FakeMetaObject::Ptr> it(newObjects);
         while (it.hasNext()) {
             it.next();
-            builtinObjects.append(it.value());
+            builtinObjects.insert(it.key(), it.value());
         }
     }
 
     return errorMsgs;
 }
 
-QString CppQmlTypesLoader::parseQmlTypeXml(const QByteArray &xml, QMap<QString, FakeMetaObject::Ptr> *newObjects)
+QString CppQmlTypesLoader::parseQmlTypeDescriptions(const QByteArray &xml, QHash<QString, FakeMetaObject::Ptr> *newObjects)
 {
-    QmlXmlReader reader(xml);
+    QmlJS::TypeDescriptionReader reader(QString::fromUtf8(xml));
     if (!reader(newObjects)) {
         if (reader.errorMessage().isEmpty())
             return QLatin1String("unknown error");
@@ -1991,16 +1995,18 @@ QString CppQmlTypesLoader::parseQmlTypeXml(const QByteArray &xml, QMap<QString,
     return QString();
 }
 
-void CppQmlTypesLoader::setSuperClasses(QMap<QString, FakeMetaObject::Ptr> *newObjects)
+void CppQmlTypesLoader::setSuperClasses(QHash<QString, FakeMetaObject::Ptr> *newObjects)
 {
-    QMapIterator<QString, FakeMetaObject::Ptr> it(*newObjects);
+    QHashIterator<QString, FakeMetaObject::Ptr> it(*newObjects);
     while (it.hasNext()) {
         it.next();
         FakeMetaObject::Ptr obj = it.value();
 
         const QString superName = obj->superclassName();
         if (! superName.isEmpty()) {
-            FakeMetaObject::Ptr superClass = newObjects->value(superName);
+            FakeMetaObject::ConstPtr superClass = newObjects->value(superName);
+            if (!superClass)
+                superClass = builtinObjects.value(superName);
             if (superClass)
                 obj->setSuperclass(superClass);
             else
@@ -2009,7 +2015,8 @@ void CppQmlTypesLoader::setSuperClasses(QMap<QString, FakeMetaObject::Ptr> *newO
     }
 }
 
-void CppQmlTypes::load(Engine *engine, const QList<FakeMetaObject::ConstPtr> &objects)
+template <typename T>
+void CppQmlTypes::load(Engine *engine, const T &objects)
 {
     // load
     QList<FakeMetaObject::ConstPtr> newObjects;
@@ -2052,6 +2059,9 @@ void CppQmlTypes::load(Engine *engine, const QList<FakeMetaObject::ConstPtr> &ob
         }
     }
 }
+// explicitly instantiate load for list and hash
+template void CppQmlTypes::load< QList<FakeMetaObject::ConstPtr> >(Engine *, const QList<FakeMetaObject::ConstPtr> &);
+template void CppQmlTypes::load< QHash<QString, FakeMetaObject::ConstPtr> >(Engine *, const QHash<QString, FakeMetaObject::ConstPtr> &);
 
 QList<QmlObjectValue *> CppQmlTypes::typesForImport(const QString &packageName, ComponentVersion version) const
 {
diff --git a/src/libs/qmljs/qmljsinterpreter.h b/src/libs/qmljs/qmljsinterpreter.h
index 2090dc71db0834eed749cfa13c622c0556e2956f..a97a19d5b04948f3f7d1f08bd7e29691d273bc1e 100644
--- a/src/libs/qmljs/qmljsinterpreter.h
+++ b/src/libs/qmljs/qmljsinterpreter.h
@@ -585,20 +585,21 @@ class QMLJS_EXPORT CppQmlTypesLoader
 {
 public:
     /** \return an empty list when successful, error messages otherwise. */
-    static QStringList loadXml(const QFileInfoList &xmlFiles);
-    static QList<LanguageUtils::FakeMetaObject::ConstPtr> builtinObjects;
+    static QStringList loadQmlTypes(const QFileInfoList &xmlFiles);
+    static QHash<QString, LanguageUtils::FakeMetaObject::ConstPtr> builtinObjects;
 
     // parses the xml string and fills the newObjects map
-    static QString parseQmlTypeXml(const QByteArray &xml,
-                                   QMap<QString, LanguageUtils::FakeMetaObject::Ptr> *newObjects);
+    static QString parseQmlTypeDescriptions(const QByteArray &xml,
+                                   QHash<QString, LanguageUtils::FakeMetaObject::Ptr> *newObjects);
 private:
-    static void setSuperClasses(QMap<QString, LanguageUtils::FakeMetaObject::Ptr> *newObjects);
+    static void setSuperClasses(QHash<QString, LanguageUtils::FakeMetaObject::Ptr> *newObjects);
 };
 
 class QMLJS_EXPORT CppQmlTypes
 {
 public:
-    void load(Interpreter::Engine *interpreter, const QList<LanguageUtils::FakeMetaObject::ConstPtr> &objects);
+    template <typename T>
+    void load(Interpreter::Engine *interpreter, const T &objects);
 
     QList<Interpreter::QmlObjectValue *> typesForImport(const QString &prefix, LanguageUtils::ComponentVersion version) const;
     Interpreter::QmlObjectValue *typeForImport(const QString &qualifiedName,
diff --git a/src/libs/qmljs/qmljstypedescriptionreader.cpp b/src/libs/qmljs/qmljstypedescriptionreader.cpp
index 0c2b5f318a7fda6ddb56de0ee3d7f1dbcb5400b3..35bce0a826b51a590c6b70f7fa4ace22c46b19a7 100644
--- a/src/libs/qmljs/qmljstypedescriptionreader.cpp
+++ b/src/libs/qmljs/qmljstypedescriptionreader.cpp
@@ -26,7 +26,7 @@ TypeDescriptionReader::~TypeDescriptionReader()
 {
 }
 
-bool TypeDescriptionReader::operator()(QMap<QString, FakeMetaObject::Ptr> *objects)
+bool TypeDescriptionReader::operator()(QHash<QString, FakeMetaObject::Ptr> *objects)
 {
     QString fileName("typeDescription");
     Engine engine;
diff --git a/src/libs/qmljs/qmljstypedescriptionreader.h b/src/libs/qmljs/qmljstypedescriptionreader.h
index 1b7d38c9a5828e2dfd5a4463a1475de428d2b1a1..21e9c3c4d5211e73da78366446e113d248ee5d5d 100644
--- a/src/libs/qmljs/qmljstypedescriptionreader.h
+++ b/src/libs/qmljs/qmljstypedescriptionreader.h
@@ -5,6 +5,9 @@
 
 #include <QtCore/QScopedPointer>
 
+// for Q_DECLARE_TR_FUNCTIONS
+#include <QtCore/QCoreApplication>
+
 QT_BEGIN_NAMESPACE
 class QIODevice;
 class QBuffer;
@@ -21,11 +24,13 @@ class SourceLocation;
 
 class TypeDescriptionReader
 {
+    Q_DECLARE_TR_FUNCTIONS(QmlJS::TypeDescriptionReader)
+
 public:
     explicit TypeDescriptionReader(const QString &data);
     ~TypeDescriptionReader();
 
-    bool operator()(QMap<QString, LanguageUtils::FakeMetaObject::Ptr> *objects);
+    bool operator()(QHash<QString, LanguageUtils::FakeMetaObject::Ptr> *objects);
     QString errorMessage() const;
 
 private:
@@ -45,7 +50,7 @@ private:
 
     QString _source;
     QString _errorMessage;
-    QMap<QString, LanguageUtils::FakeMetaObject::Ptr> *_objects;
+    QHash<QString, LanguageUtils::FakeMetaObject::Ptr> *_objects;
 };
 
 } // namespace QmlJS
diff --git a/src/plugins/qmljstools/qmljsmodelmanager.cpp b/src/plugins/qmljstools/qmljsmodelmanager.cpp
index 187007f04371388e9efc51dd2e70af418a33ed40..41a462c0c5c1467ba730f5668ddc47591aad1859 100644
--- a/src/plugins/qmljstools/qmljsmodelmanager.cpp
+++ b/src/plugins/qmljstools/qmljsmodelmanager.cpp
@@ -104,6 +104,7 @@ void ModelManager::delayedInitialization()
 void ModelManager::loadQmlTypeDescriptions()
 {
     if (Core::ICore::instance()) {
+        // ### this does not necessarily work, should only call loadQmlTypes once!
         loadQmlTypeDescriptions(Core::ICore::instance()->resourcePath());
         loadQmlTypeDescriptions(Core::ICore::instance()->userResourcePath());
     }
@@ -112,12 +113,13 @@ void ModelManager::loadQmlTypeDescriptions()
 void ModelManager::loadQmlTypeDescriptions(const QString &resourcePath)
 {
     const QDir typeFileDir(resourcePath + QLatin1String("/qml-type-descriptions"));
-    const QStringList xmlExtensions = QStringList() << QLatin1String("*.xml");
-    const QFileInfoList xmlFiles = typeFileDir.entryInfoList(xmlExtensions,
-                                                             QDir::Files,
-                                                             QDir::Name);
+    const QStringList qmlTypesExtensions = QStringList() << QLatin1String("*.qmltypes");
+    const QFileInfoList qmlTypesFiles = typeFileDir.entryInfoList(
+                qmlTypesExtensions,
+                QDir::Files,
+                QDir::Name);
 
-    const QStringList errors = Interpreter::CppQmlTypesLoader::loadXml(xmlFiles);
+    const QStringList errors = Interpreter::CppQmlTypesLoader::loadQmlTypes(qmlTypesFiles);
     foreach (const QString &error, errors)
         qWarning() << qPrintable(error);
 
diff --git a/src/plugins/qmljstools/qmljsplugindumper.cpp b/src/plugins/qmljstools/qmljsplugindumper.cpp
index aca066f1cfbd2efc323d08e61dd6c66cb11f40d8..28db6304f32ba5e0b36f18f39b62bc2b26e40825 100644
--- a/src/plugins/qmljstools/qmljsplugindumper.cpp
+++ b/src/plugins/qmljstools/qmljsplugindumper.cpp
@@ -96,8 +96,8 @@ void PluginDumper::onLoadPluginTypes(const QString &libraryPath, const QString &
     }
 
     // watch library xml file
-    if (plugin.hasPredumpedXmlFile()) {
-        const QString &path = plugin.predumpedXmlFilePath();
+    if (plugin.hasPredumpedQmlTypesFile()) {
+        const QString &path = plugin.predumpedQmlTypesFilePath();
         m_pluginWatcher->addFile(path);
         m_libraryToPluginIndex.insert(path, index);
     }
@@ -134,15 +134,15 @@ static QString qmldumpFailedMessage(const QString &error)
                             ).arg(firstLines);
 }
 
-static QList<FakeMetaObject::ConstPtr> parseHelper(const QByteArray &xml, QString *error)
+static QList<FakeMetaObject::ConstPtr> parseHelper(const QByteArray &qmlTypeDescriptions, QString *error)
 {
     QList<FakeMetaObject::ConstPtr> ret;
-    QMap<QString, FakeMetaObject::Ptr> newObjects;
-    *error = Interpreter::CppQmlTypesLoader::parseQmlTypeXml(xml, &newObjects);
+    QHash<QString, FakeMetaObject::Ptr> newObjects;
+    *error = Interpreter::CppQmlTypesLoader::parseQmlTypeDescriptions(qmlTypeDescriptions, &newObjects);
 
     if (error->isEmpty()) {
         // convert from QList<T *> to QList<const T *>
-        QMapIterator<QString, FakeMetaObject::Ptr> it(newObjects);
+        QHashIterator<QString, FakeMetaObject::Ptr> it(newObjects);
         while (it.hasNext()) {
             it.next();
             ret.append(it.value());
@@ -178,8 +178,9 @@ void PluginDumper::qmlPluginTypeDumpDone(int exitCode)
 
     if (exitCode == 0 && error.isEmpty()) {
         libraryInfo.setMetaObjects(objectsList);
-        if (libraryPath.isEmpty())
-            Interpreter::CppQmlTypesLoader::builtinObjects.append(objectsList);
+// ### disabled code path for running qmldump to get Qt's builtins
+//        if (libraryPath.isEmpty())
+//            Interpreter::CppQmlTypesLoader::builtinObjects.append(objectsList);
         libraryInfo.setDumpStatus(LibraryInfo::DumpDone);
     }
 
@@ -220,26 +221,26 @@ void PluginDumper::pluginChanged(const QString &pluginLibrary)
 
 void PluginDumper::dump(const Plugin &plugin)
 {
-    if (plugin.hasPredumpedXmlFile()) {
+    if (plugin.hasPredumpedQmlTypesFile()) {
         const Snapshot snapshot = m_modelManager->snapshot();
         LibraryInfo libraryInfo = snapshot.libraryInfo(plugin.qmldirPath);
         if (!libraryInfo.isValid())
             return;
 
-        const QString &path = plugin.predumpedXmlFilePath();
-        QFile libraryXmlFile(path);
-        if (!libraryXmlFile.open(QFile::ReadOnly | QFile::Text)) {
+        const QString &path = plugin.predumpedQmlTypesFilePath();
+        QFile libraryQmlTypesFile(path);
+        if (!libraryQmlTypesFile.open(QFile::ReadOnly | QFile::Text)) {
             libraryInfo.setDumpStatus(LibraryInfo::DumpError,
                                       tr("Could not open file '%1' for reading.").arg(path));
             m_modelManager->updateLibraryInfo(plugin.qmldirPath, libraryInfo);
             return;
         }
 
-        const QByteArray xml = libraryXmlFile.readAll();
-        libraryXmlFile.close();
+        const QByteArray qmlTypeDescriptions = libraryQmlTypesFile.readAll();
+        libraryQmlTypesFile.close();
 
         QString error;
-        const QList<FakeMetaObject::ConstPtr> objectsList = parseHelper(xml, &error);
+        const QList<FakeMetaObject::ConstPtr> objectsList = parseHelper(qmlTypeDescriptions, &error);
 
         if (error.isEmpty()) {
             libraryInfo.setMetaObjects(objectsList);
@@ -390,12 +391,12 @@ QString PluginDumper::resolvePlugin(const QDir &qmldirPath, const QString &qmldi
 #endif
 }
 
-bool PluginDumper::Plugin::hasPredumpedXmlFile() const
+bool PluginDumper::Plugin::hasPredumpedQmlTypesFile() const
 {
-    return QFileInfo(predumpedXmlFilePath()).isFile();
+    return QFileInfo(predumpedQmlTypesFilePath()).isFile();
 }
 
-QString PluginDumper::Plugin::predumpedXmlFilePath() const
+QString PluginDumper::Plugin::predumpedQmlTypesFilePath() const
 {
-    return QString("%1%2library.xml").arg(qmldirPath, QDir::separator());
+    return QString("%1%2plugins.qmltypes").arg(qmldirPath, QDir::separator());
 }
diff --git a/src/plugins/qmljstools/qmljsplugindumper.h b/src/plugins/qmljstools/qmljsplugindumper.h
index 3d37d185c2d5956c9886d14102e6ac4f197128bf..99e4a147fc8ef378c58548c81c905d6aedd52654 100644
--- a/src/plugins/qmljstools/qmljsplugindumper.h
+++ b/src/plugins/qmljstools/qmljsplugindumper.h
@@ -77,8 +77,8 @@ private:
         QString importPath;
         QString importUri;
 
-        bool hasPredumpedXmlFile() const;
-        QString predumpedXmlFilePath() const;
+        bool hasPredumpedQmlTypesFile() const;
+        QString predumpedQmlTypesFilePath() const;
     };
 
     void dump(const Plugin &plugin);
diff --git a/src/plugins/qt4projectmanager/qmldumptool.cpp b/src/plugins/qt4projectmanager/qmldumptool.cpp
index 0b8432e77a1bdfa12280292dc80a1c30ddea475a..6350313aa671f6194fff5c5f875f501401dfab06 100644
--- a/src/plugins/qt4projectmanager/qmldumptool.cpp
+++ b/src/plugins/qt4projectmanager/qmldumptool.cpp
@@ -269,6 +269,7 @@ QString QmlDumpTool::copy(const QString &qtInstallData, QString *errorMessage)
 
     QStringList files;
     files << QLatin1String("main.cpp") << QLatin1String("qmldump.pro")
+          << QLatin1String("qmlstreamwriter.cpp") << QLatin1String("qmlstreamwriter.h")
           << QLatin1String("LICENSE.LGPL") << QLatin1String("LGPL_EXCEPTION.TXT")
           << QLatin1String("Info.plist");