annotate widgets/LayerTreeDialog.h @ 381:44670ce11a0c spectrogram-cache-rejig

* Some debug output and tweaks
author Chris Cannam
date Thu, 08 May 2008 09:23:16 +0000
parents 64e84e5efb76
children 1d85aa5a49be
rev   line source
Chris@374 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@374 2
Chris@374 3 /*
Chris@374 4 Sonic Visualiser
Chris@374 5 An audio file viewer and annotation editor.
Chris@374 6 Centre for Digital Music, Queen Mary, University of London.
Chris@374 7 This file copyright 2007 QMUL.
Chris@374 8
Chris@374 9 This program is free software; you can redistribute it and/or
Chris@374 10 modify it under the terms of the GNU General Public License as
Chris@374 11 published by the Free Software Foundation; either version 2 of the
Chris@374 12 License, or (at your option) any later version. See the file
Chris@374 13 COPYING included with this distribution for more information.
Chris@374 14 */
Chris@374 15
Chris@374 16 #ifndef _LAYER_TREE_DIALOG_H_
Chris@374 17 #define _LAYER_TREE_DIALOG_H_
Chris@374 18
Chris@374 19 #include <QDialog>
Chris@374 20
Chris@374 21 class ModelDataModel;
Chris@374 22 class LayerTreeModel;
Chris@374 23 class PaneStack;
Chris@374 24 class QTreeView;
Chris@374 25 class QTableView;
Chris@374 26
Chris@374 27 class LayerTreeDialog : public QDialog
Chris@374 28 {
Chris@374 29 Q_OBJECT
Chris@374 30
Chris@374 31 public:
Chris@374 32 LayerTreeDialog(PaneStack *stack, QWidget *parent = 0);
Chris@374 33 ~LayerTreeDialog();
Chris@374 34
Chris@374 35 protected:
Chris@374 36 PaneStack *m_paneStack;
Chris@374 37 ModelDataModel *m_modelModel;
Chris@374 38 QTableView *m_modelView;
Chris@374 39 LayerTreeModel *m_layerModel;
Chris@374 40 QTreeView *m_layerView;
Chris@374 41 };
Chris@374 42
Chris@374 43 #endif