]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QMathMatrixDialog.h
dont use pragma impementation and interface anymore
[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 Juergen Spitzmueller
10  *
11  * Full author contact details are available in file CREDITS
12  */
13
14 #ifndef QMATHMATRIXDIALOG_H
15 #define QMATHMATRIXDIALOG_H
16
17
18 #include "ui/QMathMatrixDialogBase.h"
19
20 class QMath;
21
22 class QMathMatrixDialog : public QMathMatrixDialogBase {
23         Q_OBJECT
24 public:
25         QMathMatrixDialog(QMath * form);
26 public slots:
27         void slotOK();
28         void slotClose();
29 protected slots:
30         virtual void columnsChanged(int);
31         virtual void rowsChanged(int);
32         virtual void change_adaptor();
33 private:
34         QMath * form_;
35 };
36
37 #endif // QMATHMATRIXDIALOG_H