]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QMathMatrixDialog.h
better selection and scrolling behaviour
[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 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "ui/QMathMatrixDialogBase.h"
22
23 class QMath;
24
25 class QMathMatrixDialog : public QMathMatrixDialogBase {
26         Q_OBJECT
27 public:
28         QMathMatrixDialog(QMath * form);
29 public slots:
30         void slotOK();
31         void slotClose();
32 protected slots:
33         virtual void columnsChanged(int);
34         virtual void rowsChanged(int);
35         virtual void change_adaptor();
36 private:
37         QMath * form_;
38 };
39
40 #endif // QMATHMATRIXDIALOG_H