Hide member documentation in imports

These classes are exposed only as QML so we should only show members the
user can actually use.

The invokable is moved to the top for easier reading

REVIEW: 119745
This commit is contained in:
David Edmundson 2014-08-12 21:58:17 +02:00
parent c92a2697fa
commit ace0209e0e

View File

@ -143,6 +143,14 @@ class FrameSvgItem : public QQuickItem
Q_PROPERTY(qreal implicitHeight READ implicitHeight WRITE setImplicitHeight NOTIFY implicitHeightChanged)
public:
/**
* @return true if the svg has the necessary elements with the given prefix
* to draw a frame
* @param prefix the given prefix we want to check if drawable
*/
Q_INVOKABLE bool hasElementPrefix(const QString &prefix) const;
/// @cond INTERNAL_DOCS
FrameSvgItem(QQuickItem *parent = 0);
~FrameSvgItem();
@ -172,18 +180,15 @@ public:
*/
Plasma::FrameSvg *frameSvg() const;
/**
* @return true if the svg has the necessary elements with the given prefix
* to draw a frame
* @param prefix the given prefix we want to check if drawable
*/
Q_INVOKABLE bool hasElementPrefix(const QString &prefix) const;
virtual QSGNode *updatePaintNode(QSGNode *, UpdatePaintNodeData *);
protected:
virtual void componentComplete();
/// @endcond
Q_SIGNALS:
void imagePathChanged();
void prefixChanged();