X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiMathMatrix.h;h=8f2f036eabec76a0d326c1eb0392c3e08182c9cf;hb=37f41fd4b56c54764014c93c003be555f3fd6421;hp=7eae605d0b36bdf59204c0fc22ddc175b95a41b9;hpb=c9ea6e6eef090b863fb54445010f24443b15eb23;p=lyx.git diff --git a/src/frontends/qt4/GuiMathMatrix.h b/src/frontends/qt4/GuiMathMatrix.h index 7eae605d0b..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() const; }; } // namespace frontend