]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiMathMatrix.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / GuiMathMatrix.h
1 // -*- C++ -*-
2 /**
3  * \file GuiMathMatrix.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 GUIMATHMATRIX_H
15 #define GUIMATHMATRIX_H
16
17 #include "GuiMath.h"
18 #include "ui_MathMatrixUi.h"
19
20 #include <QDialog>
21
22 namespace lyx {
23 namespace frontend {
24
25 class GuiMathMatrix : public GuiMath, public Ui::MathMatrixUi
26 {
27         Q_OBJECT
28
29 public:
30         GuiMathMatrix(GuiView & lv);
31
32 public Q_SLOTS:
33         void slotOK();
34         void slotClose();
35         void columnsChanged(int);
36         void rowsChanged(int);
37         void change_adaptor();
38 };
39
40 } // namespace frontend
41 } // namespace lyx
42
43 #endif // GUIMATHMATRIXDIALOG_H