]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QMathMatrixDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / QMathMatrixDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QMathMatrixDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Edwin Leuven
9  * \author Jürgen Spitzmüller
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef QMATHMATRIXDIALOG_H
15 #define QMATHMATRIXDIALOG_H
16
17 #include "ui/QMathMatrixDialogBase.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class QMathMatrix;
23
24 class QMathMatrixDialog : public QMathMatrixDialogBase {
25         Q_OBJECT
26 public:
27         QMathMatrixDialog(QMathMatrix * form);
28 public slots:
29         void slotOK();
30         void slotClose();
31 protected slots:
32         virtual void columnsChanged(int);
33         virtual void rowsChanged(int);
34         virtual void change_adaptor();
35 private:
36         QMathMatrix * form_;
37 };
38
39 } // namespace frontend
40 } // namespace lyx
41
42 #endif // QMATHMATRIXDIALOG_H