From 0a2ce9c254e5cf84531bd7ef24923956cc8d5048 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Thu, 11 Feb 2016 11:24:20 -0200 Subject: Scatterplot: glyph size is now a Q_PROPERTY. In addition, the updateView parameter was removed from all methods that had it. --- scatterplot.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'scatterplot.h') diff --git a/scatterplot.h b/scatterplot.h index 1b40040..f12c658 100644 --- a/scatterplot.h +++ b/scatterplot.h @@ -16,6 +16,7 @@ class Scatterplot : public QQuickItem { Q_OBJECT + Q_PROPERTY(float glyphSize READ glyphSize WRITE setGlyphSize NOTIFY glyphSizeChanged) public: static const int PADDING = 20; @@ -24,9 +25,8 @@ public: arma::mat XY() const; void setColorScale(const ColorScale &colorScale); void setAutoScale(bool autoScale); - Q_INVOKABLE bool saveToFile(const QUrl &url); - - Q_INVOKABLE float glyphSize() const { return m_glyphSize; } + float glyphSize() const { return m_glyphSize; } + void setGlyphSize(float glyphSize); void setDragEnabled(bool enabled) { m_dragEnabled = enabled; } bool isDragEnabled() const { return m_dragEnabled; } @@ -50,7 +50,6 @@ public slots: void setScale(const LinearScale &sx, const LinearScale &sy); void setSelection(const std::vector &selection); void brushItem(int item); - Q_INVOKABLE void setGlyphSize(float glyphSize, bool updateView = true); protected: QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *); -- cgit v1.2.3