mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
43b77ba2d7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14952 a592a061-630c-0410-9148-cb99ea01b6c8
66 lines
1.2 KiB
C
66 lines
1.2 KiB
C
/**
|
|
* \file QMath.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "QMath.h"
|
|
#include "QMathDialog.h"
|
|
#include "QMathMatrixDialog.h"
|
|
#include "QDelimiterDialog.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
typedef QController<ControlMath, QView<QMathDialog> > math_base;
|
|
|
|
|
|
QMath::QMath(Dialog & parent)
|
|
: math_base(parent, lyx::to_utf8(_("Math Panel")))
|
|
{}
|
|
|
|
|
|
void QMath::build_dialog()
|
|
{
|
|
dialog_.reset(new QMathDialog(this));
|
|
}
|
|
|
|
|
|
typedef QController<ControlMath, QView<QMathMatrixDialog> > matrix_base;
|
|
|
|
|
|
QMathMatrix::QMathMatrix(Dialog & parent)
|
|
: matrix_base(parent, lyx::to_utf8(_("Math Matrix")))
|
|
{}
|
|
|
|
|
|
void QMathMatrix::build_dialog()
|
|
{
|
|
dialog_.reset(new QMathMatrixDialog(this));
|
|
}
|
|
|
|
|
|
typedef QController<ControlMath, QView<QDelimiterDialog> > delimiter_base;
|
|
|
|
|
|
QMathDelimiter::QMathDelimiter(Dialog & parent)
|
|
: delimiter_base(parent, lyx::to_utf8(_("Math Delimiter")))
|
|
{}
|
|
|
|
|
|
void QMathDelimiter::build_dialog()
|
|
{
|
|
dialog_.reset(new QDelimiterDialog(this));
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|