]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiMathMatrix.h
7eae605d0b36bdf59204c0fc22ddc175b95a41b9
[lyx.git] / src / frontends / qt4 / GuiMathMatrix.h
1 // -*- C++ -*-
2 /**
3  * \file GuiMathMatrixDialog.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 GUIMATHMATRIXDIALOG_H
15 #define GUIMATHMATRIXDIALOG_H
16
17 #include "GuiDialog.h"
18 #include "ControlMath.h"
19 #include "ui_MathMatrixUi.h"
20
21 #include <QDialog>
22
23 namespace lyx {
24 namespace frontend {
25
26 class GuiMathMatrixDialog : public GuiDialog, public Ui::MathMatrixUi
27 {
28         Q_OBJECT
29
30 public:
31         GuiMathMatrixDialog(LyXView & lv);
32
33 public Q_SLOTS:
34         void slotOK();
35         void slotClose();
36         void columnsChanged(int);
37         void rowsChanged(int);
38         void change_adaptor();
39
40         /// parent controller
41         ControlMath & controller() const;
42 };
43
44 } // namespace frontend
45 } // namespace lyx
46
47 #endif // GUIMATHMATRIXDIALOG_H