X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Ffrontends%2Fqt4%2FGuiMathMatrix.h;h=8f2f036eabec76a0d326c1eb0392c3e08182c9cf;hb=37f41fd4b56c54764014c93c003be555f3fd6421;hp=e7d5aeb11efddf95cb6d81d32a707a44c3297f43;hpb=470aba2a0e552f27d55992372c09f15af9725fa8;p=lyx.git diff --git a/src/frontends/qt4/GuiMathMatrix.h b/src/frontends/qt4/GuiMathMatrix.h index e7d5aeb11e..8f2f036eab 100644 --- a/src/frontends/qt4/GuiMathMatrix.h +++ b/src/frontends/qt4/GuiMathMatrix.h @@ -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 +#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