aboutsummaryrefslogtreecommitdiff
path: root/scatterplot.h
blob: 8f2c8c49666e63e010981c02ffac5ec61f992c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef SCATTERPLOT_H
#define SCATTERPLOT_H

#include <memory>
#include <armadillo>
#include <QtQuick>
#include <QSet>
#include <QEasingCurve>

#include "colorscale.h"
#include "scale.h"

class Scatterplot : public QQuickItem
{
    Q_OBJECT
public:
    Scatterplot(QQuickItem *parent = 0);

    arma::mat XY() const;
    void setColorScale(ColorScale *colorScale);
    Q_INVOKABLE bool saveToFile(const QUrl &url);

signals:
    void xyChanged(const arma::mat &XY) const;
    void xyInteractivelyChanged(const arma::mat &XY) const;
    void colorDataChanged(const arma::vec &colorData) const;
    void selectionChanged(const QSet<int> &selection) const;
    void displaySplatChanged(bool displaySplat) const;

public slots:
    void setXY(const arma::mat &xy);
    void setColorData(const arma::vec &colorData);
    void setSelection(const QSet<int> &selection);
    void setDisplaySplat(bool displaySplat);

protected:
    QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *);
    void mousePressEvent(QMouseEvent *event);
    void mouseMoveEvent(QMouseEvent *event);
    void mouseReleaseEvent(QMouseEvent *event);

private:
    QSGNode *newSceneGraph();
    QSGNode *newSplatNode();
    QSGNode *newGlyphTree();
    bool updateSelection(bool mergeSelection);

    void applyManipulation();

    void updateGeometry();
    void updateMaterials();

    void updateSplat(QSGNode *node);
    void updateGlyphs(QSGNode *node);

    void resetAnimation();
    void startAnimation();
    void animationTick();

    arma::mat m_oldXY, m_xy;
    LinearScale<float> m_sx, m_sy;

    enum InteractionState {
        INTERACTION_NONE,
        INTERACTION_SELECTING,
        INTERACTION_SELECTED,
        INTERACTION_BEGIN_MOVING,
        INTERACTION_MOVING
    } m_currentInteractionState;

    QPointF m_dragOriginPos, m_dragCurrentPos;

    QSet<int> m_selectedGlyphs;

    bool m_shouldUpdateGeometry, m_shouldUpdateMaterials;

    bool m_displaySplat;
    arma::vec m_colorData;
    ColorScale *m_colorScale;

    QEasingCurve m_animationEasing;
    float m_t;
};

#endif // SCATTERPLOT_H