Chris@413
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@413
|
2
|
Chris@413
|
3 /*
|
Chris@413
|
4 Sonic Visualiser
|
Chris@413
|
5 An audio file viewer and annotation editor.
|
Chris@413
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@413
|
7 This file copyright 2008 QMUL.
|
Chris@413
|
8
|
Chris@413
|
9 This program is free software; you can redistribute it and/or
|
Chris@413
|
10 modify it under the terms of the GNU General Public License as
|
Chris@413
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@413
|
12 License, or (at your option) any later version. See the file
|
Chris@413
|
13 COPYING included with this distribution for more information.
|
Chris@413
|
14 */
|
Chris@413
|
15
|
Chris@413
|
16 #ifndef _MODEL_DATA_TABLE_MODEL_H_
|
Chris@413
|
17 #define _MODEL_DATA_TABLE_MODEL_H_
|
Chris@413
|
18
|
Chris@413
|
19 #include <QAbstractItemModel>
|
Chris@413
|
20
|
Chris@413
|
21 #include "Model.h"
|
Chris@413
|
22
|
Chris@413
|
23 class ModelDataTableModel : public QAbstractItemModel
|
Chris@413
|
24 {
|
Chris@413
|
25 Q_OBJECT
|
Chris@413
|
26
|
Chris@413
|
27 public:
|
Chris@413
|
28 ModelDataTableModel(Model *m);
|
Chris@413
|
29 virtual ~ModelDataTableModel();
|
Chris@413
|
30
|
Chris@413
|
31 QVariant data(const QModelIndex &index, int role) const;
|
Chris@413
|
32
|
Chris@413
|
33 bool setData(const QModelIndex &index, const QVariant &value, int role);
|
Chris@413
|
34
|
Chris@413
|
35 Qt::ItemFlags flags(const QModelIndex &index) const;
|
Chris@413
|
36
|
Chris@413
|
37 QVariant headerData(int section, Qt::Orientation orientation,
|
Chris@413
|
38 int role = Qt::DisplayRole) const;
|
Chris@413
|
39
|
Chris@413
|
40 QModelIndex index(int row, int column,
|
Chris@413
|
41 const QModelIndex &parent = QModelIndex()) const;
|
Chris@413
|
42
|
Chris@413
|
43 QModelIndex parent(const QModelIndex &index) const;
|
Chris@413
|
44
|
Chris@413
|
45 int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
Chris@413
|
46 int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
Chris@413
|
47
|
Chris@413
|
48 static bool canHandleModelType(Model *);
|
Chris@413
|
49
|
Chris@413
|
50 protected slots:
|
Chris@413
|
51 void modelChanged();
|
Chris@413
|
52 void modelChanged(size_t, size_t);
|
Chris@413
|
53
|
Chris@413
|
54 protected:
|
Chris@413
|
55 // We need to have some sort of map between row and time in sample
|
Chris@413
|
56 // frames. I guess this will do for now.
|
Chris@413
|
57
|
Chris@413
|
58 std::vector<size_t> m_rows; // contains sample frame
|
Chris@413
|
59
|
Chris@413
|
60 Model *m_model;
|
Chris@413
|
61
|
Chris@413
|
62 void rebuildRowVector();
|
Chris@413
|
63 template <typename PointType> void rebuildRowVectorSparse();
|
Chris@413
|
64 template <typename PointType> QVariant dataSparse(int row, int col) const;
|
Chris@413
|
65 };
|
Chris@413
|
66
|
Chris@413
|
67 #endif
|