1 /***************************************************************************
2  *                                                                         *
3  *   copyright : (C) 2007 The University of Toronto                        *
4  *                   netterfield@astro.utoronto.ca                         *
5  *                                                                         *
6  *   This program is free software; you can redistribute it and/or modify  *
7  *   it under the terms of the GNU General Public License as published by  *
8  *   the Free Software Foundation; either version 2 of the License, or     *
9  *   (at your option) any later version.                                   *
10  *                                                                         *
11  ***************************************************************************/
12 
13 #ifndef VIEWMATRIXDIALOG_H
14 #define VIEWMATRIXDIALOG_H
15 
16 #include <QDialog>
17 
18 #include "ui_viewmatrixdialog.h"
19 
20 #include "kst_export.h"
21 
22 namespace Kst {
23 
24 class Document;
25 class MatrixModel;
26 
27 class ViewMatrixDialog : public QDialog, Ui::ViewMatrixDialog
28 {
29   Q_OBJECT
30   public:
31     ViewMatrixDialog(QWidget *parent, Document *doc);
32     virtual ~ViewMatrixDialog();
33 
34     virtual void show();
35 
36 private Q_SLOTS:
37     void matrixSelected();
38 
39   private:
40     Document *_doc;
41     MatrixModel *_model;
42 };
43 
44 }
45 
46 #endif
47 
48 // vim: ts=2 sw=2 et
49