]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiMathMatrix.h
Support for command argument placement after the workarea argument
[lyx.git] / src / frontends / qt4 / GuiMathMatrix.h
index e7d5aeb11efddf95cb6d81d32a707a44c3297f43..8f2f036eabec76a0d326c1eb0392c3e08182c9cf 100644 (file)
@@ -1,44 +1,44 @@
 // -*- C++ -*-
 /**
- * \file GuiMathMatrixDialog.h
+ * \file GuiMathMatrix.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
  * \author John Levon
  * \author Edwin Leuven
- * \author Jürgen Spitzmüller
+ * \author Jürgen Spitzmüller
  *
  * Full author contact details are available in file CREDITS.
  */
 
-#ifndef GUIMATHMATRIXDIALOG_H
-#define GUIMATHMATRIXDIALOG_H
+#ifndef GUIMATHMATRIX_H
+#define GUIMATHMATRIX_H
 
 #include "GuiDialog.h"
-#include "ControlMath.h"
-#include "ui_MathMatrixUi.h"
 
-#include <QDialog>
+#include "ui_MathMatrixUi.h"
 
 namespace lyx {
 namespace frontend {
 
-class GuiMathMatrixDialog : public GuiDialog, public Ui::MathMatrixUi
+class GuiMathMatrix : public GuiDialog, public Ui::MathMatrixUi
 {
        Q_OBJECT
 
 public:
-       GuiMathMatrixDialog(LyXView & lv);
+       GuiMathMatrix(GuiView & lv);
+
+       bool initialiseParams(std::string const &) { return true; }
+       void clearParams() {}
+       void dispatchParams() {}
+       bool isBufferDependent() const { return true; }
 
 public Q_SLOTS:
        void slotOK();
        void slotClose();
        void columnsChanged(int);
-       void rowsChanged(int);
+       void decorationChanged(int);
        void change_adaptor();
-
-       /// parent controller
-       ControlMath & controller();
 };
 
 } // namespace frontend