Add more missing @class and @short descriptors
This commit is contained in:
parent
ace0209e0e
commit
5478c7e3c2
@ -2,18 +2,18 @@
|
||||
|
||||
<h2>import org.kde.plasma.core</h2>
|
||||
|
||||
- Main
|
||||
- ColorScope
|
||||
- Plasma::DataModel
|
||||
- Plasma::DataSource
|
||||
- IconItem
|
||||
- Plasma::FrameSvgItem
|
||||
- Plasma::SvgItem
|
||||
- Plasma::SortFilterModel
|
||||
- DialogProxy
|
||||
- Plasma::Theme
|
||||
- PlasmaQuick::Dialog
|
||||
- SortFilterModel
|
||||
- ThemeProxy
|
||||
- ToolTipProxy
|
||||
- RunnerModel
|
||||
- IconItem
|
||||
- ColorScope
|
||||
- ToolTip
|
||||
- Units
|
||||
|
||||
*/
|
||||
|
||||
|
@ -34,6 +34,10 @@ namespace Plasma
|
||||
class DataSource;
|
||||
class DataModel;
|
||||
|
||||
/**
|
||||
* @class SortFilterModel
|
||||
* @short Filter and sort an existing QAbstractItemModel
|
||||
*/
|
||||
class SortFilterModel : public QSortFilterProxyModel
|
||||
{
|
||||
Q_OBJECT
|
||||
@ -121,6 +125,10 @@ private:
|
||||
QHash<QString, int> m_roleIds;
|
||||
};
|
||||
|
||||
/**
|
||||
* @class DataModel
|
||||
* @short DataSource data as a model
|
||||
*/
|
||||
class DataModel : public QAbstractItemModel
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -36,6 +36,10 @@ namespace Plasma
|
||||
{
|
||||
class DataEngine;
|
||||
|
||||
/**
|
||||
* @class DataSource
|
||||
* @short Provides data from a range of plugins
|
||||
*/
|
||||
class DataSource : public QObject, DataEngineConsumer
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -31,6 +31,10 @@
|
||||
|
||||
class QPropertyAnimation;
|
||||
|
||||
/**
|
||||
* @class IconItem
|
||||
* @short Displays an icon, either from the standard QIcon system or where applicable from the theme SVG files
|
||||
*/
|
||||
class IconItem : public QQuickItem
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -29,6 +29,9 @@ namespace Plasma
|
||||
|
||||
class Svg;
|
||||
|
||||
/**
|
||||
* @class SvgItem
|
||||
*/
|
||||
class SvgItem : public QQuickItem
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -32,6 +32,8 @@ class QGraphicsWidget;
|
||||
class ToolTipDialog;
|
||||
|
||||
/**
|
||||
* @class ToolTip
|
||||
*
|
||||
* An Item managing a Plasma-themed tooltip. It is rendered in its own window.
|
||||
* You can either specify iconSource, mainText and subText, or a custom Component
|
||||
* that will be put inside the tooltip. By specifying the target property, you
|
||||
|
@ -28,6 +28,11 @@
|
||||
|
||||
class QQuickItem;
|
||||
|
||||
|
||||
/**
|
||||
* @class Units
|
||||
* @short Expose sizes to QML
|
||||
*/
|
||||
class Units : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -53,7 +53,8 @@ namespace PlasmaQuick
|
||||
class DialogPrivate;
|
||||
|
||||
/**
|
||||
* QML wrapper for dialogs
|
||||
* @class Dialog
|
||||
* @short QML wrapper for dialogs
|
||||
*
|
||||
* Exposed as `PlasmaCore.Dialog` in QML.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user