Document QML names for C++ classes suffixed with "Proxy"

This commit is contained in:
Aurélien Gâteau 2012-12-14 16:14:31 +01:00
parent ec68fd8248
commit 2b6797dca3
3 changed files with 15 additions and 0 deletions

View File

@ -84,6 +84,11 @@ private:
friend class DialogProxy;
};
/**
* QML wrapper for kdelibs Plasma::Dialog
*
* Exposed as `Dialog` in QML.
*/
class DialogProxy : public QDeclarativeItem
{
Q_OBJECT

View File

@ -165,6 +165,11 @@ private:
Plasma::Theme::FontRole m_fontRole;
};
/**
* QML wrapper for kdelibs Plasma::Theme
*
* Exposed as `Theme` in QML.
*/
class ThemeProxy : public QObject
{
Q_OBJECT

View File

@ -29,6 +29,11 @@ class QGraphicsObject;
class QGraphicsWidget;
class DeclarativeItemContainer;
/**
* QML wrapper for kdelibs Plasma::ToolTip
*
* Exposed as `ToolTip` in QML.
*/
class ToolTipProxy : public QObject
{
Q_OBJECT