summaryrefslogtreecommitdiff
path: root/src/data/nodestylelist.h
blob: 03f7ed5cacfdab935594045866a630f94ff3aa6e (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
#ifndef NODESTYLELIST_H
#define NODESTYLELIST_H

#include "nodestyle.h"

#include <QAbstractListModel>

class NodeStyleList : public QAbstractListModel
{
    Q_OBJECT
public:
    explicit NodeStyleList(QObject *parent = nullptr);
    NodeStyle *style(QString name);
    NodeStyle *style(int i);
    int length() const;
    void addStyle(NodeStyle *s);
    void clear();
    QString tikz();

    int numInCategory() const;
    int nthInCategory(int n) const;
    NodeStyle *styleInCategory(int n) const;

    QVariant data(const QModelIndex &index, int role) const override;
    int rowCount(const QModelIndex &/*parent*/) const override;


    QString category() const;
    void setCategory(const QString &category);

signals:

public slots:

private:
    QVector<NodeStyle*> _styles;
    QString _category;
};

#endif // NODESTYLELIST_H