lyx_mirror/src/frontends/qt4/GuiMathMatrix.h
Uwe Stöhr 802067ecdc support for matrix decoration in the MathMatrix dialog;
introduces a new LFUN and fixes #4620

This can in principle also go to branch when new LFUNs are there allowed, Jürgen?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30523 a592a061-630c-0410-9148-cb99ea01b6c8
2009-07-12 21:39:21 +00:00

49 lines
954 B
C++

// -*- C++ -*-
/**
* \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
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GUIMATHMATRIX_H
#define GUIMATHMATRIX_H
#include "GuiDialog.h"
#include "ui_MathMatrixUi.h"
namespace lyx {
namespace frontend {
class GuiMathMatrix : public GuiDialog, public Ui::MathMatrixUi
{
Q_OBJECT
public:
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();
};
} // namespace frontend
} // namespace lyx
#endif // GUIMATHMATRIXDIALOG_H