Chris@374: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@374: Chris@374: /* Chris@374: Sonic Visualiser Chris@374: An audio file viewer and annotation editor. Chris@374: Centre for Digital Music, Queen Mary, University of London. Chris@374: This file copyright 2007 QMUL. Chris@374: Chris@374: This program is free software; you can redistribute it and/or Chris@374: modify it under the terms of the GNU General Public License as Chris@374: published by the Free Software Foundation; either version 2 of the Chris@374: License, or (at your option) any later version. See the file Chris@374: COPYING included with this distribution for more information. Chris@374: */ Chris@374: Chris@374: #ifndef _LAYER_TREE_DIALOG_H_ Chris@374: #define _LAYER_TREE_DIALOG_H_ Chris@374: Chris@374: #include Chris@374: Chris@374: class ModelDataModel; Chris@374: class LayerTreeModel; Chris@374: class PaneStack; Chris@374: class QTreeView; Chris@374: class QTableView; Chris@374: Chris@374: class LayerTreeDialog : public QDialog Chris@374: { Chris@374: Q_OBJECT Chris@374: Chris@374: public: Chris@374: LayerTreeDialog(PaneStack *stack, QWidget *parent = 0); Chris@374: ~LayerTreeDialog(); Chris@374: Chris@374: protected: Chris@374: PaneStack *m_paneStack; Chris@374: ModelDataModel *m_modelModel; Chris@374: QTableView *m_modelView; Chris@374: LayerTreeModel *m_layerModel; Chris@374: QTreeView *m_layerView; Chris@374: }; Chris@374: Chris@374: #endif