forked from ILightburn/KLM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtablemodelpaths.h
36 lines (28 loc) · 1 KB
/
tablemodelpaths.h
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
#ifndef TABLEMODELPATHS_H
#define TABLEMODELPATHS_H
#include <QAbstractTableModel>
#include "karaokefile.h"
class TableModelPaths : public QAbstractTableModel
{
Q_OBJECT
public:
enum Columns{
PATH,
PATTERN
};
explicit TableModelPaths(QObject *parent = nullptr);
// Header:
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
// Basic functionality:
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
void addPath(QSharedPointer<KaraokePath> path);
const KLM::KaraokePathList& paths() const;
bool exists(const QString &path);
void remove(const QString &path);
void modifyNamingPattern(const QString &path, NamingPattern newPattern);
private:
KLM::KaraokePathList m_paths;
};
#endif // TABLEMODELPATHS_H