Mercurial > hg > svgui
view widgets/LayerTree.h @ 48:97b0643bd799
* A bit more work on main window / document / commands stuff. This is still
pretty unstable.
* Enable CSV file reader also to read files with other separators (e.g. .lab
files with space separators)
* Show "(R)" on waveform display when resampling during playback
* Add ability to import additional audio files (can't process them yet)
* Fixes to spectrogram cache for multiple views
* Fix to avoid floating-point exception in sparse model when resolution not
set yet
author | Chris Cannam |
---|---|
date | Mon, 06 Mar 2006 17:20:25 +0000 |
parents | 78515b1e29eb |
children | fedaf3ffe80a |
line wrap: on
line source
/* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */ /* A waveform viewer and audio annotation editor. Chris Cannam, Queen Mary University of London, 2005-2006 This is experimental software. Not for distribution. */ #ifndef _LAYER_TREE_H_ #define _LAYER_TREE_H_ #include <QAbstractItemModel> class PaneStack; class LayerTreeModel : public QAbstractItemModel { Q_OBJECT public: LayerTreeModel(PaneStack *stack, QObject *parent = 0); virtual ~LayerTreeModel(); QVariant data(const QModelIndex &index, int role) const; // Qt::ItemFlags flags(const QModelIndex &index) const; // QVariant headerData(int section, Qt::Orientation orientation, // int role = Qt::DisplayRole) const; QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; QModelIndex parent(const QModelIndex &index) const; int rowCount(const QModelIndex &parent = QModelIndex()) const; int columnCount(const QModelIndex &parent = QModelIndex()) const; protected: PaneStack *m_stack; }; #endif