summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-10-26 02:35:48 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-10-26 02:35:48 (GMT)
commit60b8fc37ac04b9247481e5f03d1d7fa9ae059a07 (patch)
treee67ce2cecbc40ae107ddc5d796a906a6330278d0 /src/declarative/fx
parent24498457049f0504d0b09935dea6ca6a5634bb2d (diff)
downloadQt-60b8fc37ac04b9247481e5f03d1d7fa9ae059a07.zip
Qt-60b8fc37ac04b9247481e5f03d1d7fa9ae059a07.tar.gz
Qt-60b8fc37ac04b9247481e5f03d1d7fa9ae059a07.tar.bz2
Doc.
Diffstat (limited to 'src/declarative/fx')
-rw-r--r--src/declarative/fx/qfxitem.cpp13
-rw-r--r--src/declarative/fx/qfxpainteditem.cpp2
2 files changed, 14 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp
index b82a38d..51575cc 100644
--- a/src/declarative/fx/qfxitem.cpp
+++ b/src/declarative/fx/qfxitem.cpp
@@ -1198,6 +1198,19 @@ QFxKeysAttached *QFxKeysAttached::qmlAttachedProperties(QObject *obj)
}
/*!
+ \class QFxItem
+ \brief QFxItem is the most basic of all visual items in QML.
+
+ All visual items in Qt Declarative inherit from QFxItem. Although QFxItem
+ has no visual appearance, it defines all the properties that are
+ common across visual items - such as the x and y position, the
+ width and height, \l {anchor-layout}{anchoring} and key handling.
+
+ You can subclass QFxItem to provide your own custom visual item that inherits
+ these features.
+*/
+
+/*!
\qmlclass Item QFxItem
\brief The Item is the most basic of all visual items in QML.
diff --git a/src/declarative/fx/qfxpainteditem.cpp b/src/declarative/fx/qfxpainteditem.cpp
index 05fcc93..e0ef99f 100644
--- a/src/declarative/fx/qfxpainteditem.cpp
+++ b/src/declarative/fx/qfxpainteditem.cpp
@@ -55,7 +55,7 @@ QT_BEGIN_NAMESPACE
/*!
\class QFxPaintedItem
\brief The QFxPaintedItem class is an abstract base class for QmlView items that want cached painting.
- \ingroup group_coreitems
+ \internal
This is a convenience class for implementing items that paint their contents
using a QPainter. The contents of the item are cached behind the scenes.