mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
b5049e769b
- proper message passing for all tabular features - properly define which feature needs an argument * replace LFUN_TABULAR_FEATURE with LFUN_INSET_MODIFY - The math tables are also affected. In the future a common base class between math and text table will solve this inconsistency. - There is a hack in GuiApplication in order to not rename the toolbar icons. This will have to be cleaned up with a general icon naming for LFUN_INSET_MODIFY... to be discussed. * Tabular Dialog: - big cleanup, lots and lots of bug fixing here - migrated to InsetParamsWidget git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33495 a592a061-630c-0410-9148-cb99ea01b6c8
129 lines
2.3 KiB
C++
129 lines
2.3 KiB
C++
/**
|
|
* \file InsetMathSubstack.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetMathSubstack.h"
|
|
|
|
#include "LaTeXFeatures.h"
|
|
#include "MathData.h"
|
|
#include "MathStream.h"
|
|
|
|
#include "FuncRequest.h"
|
|
#include "FuncStatus.h"
|
|
#include "support/gettext.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <ostream>
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
|
|
using support::bformat;
|
|
|
|
|
|
InsetMathSubstack::InsetMathSubstack(Buffer * buf)
|
|
: InsetMathGrid(buf, 1, 1)
|
|
{}
|
|
|
|
|
|
Inset * InsetMathSubstack::clone() const
|
|
{
|
|
return new InsetMathSubstack(*this);
|
|
}
|
|
|
|
|
|
void InsetMathSubstack::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
if (mi.base.style == LM_ST_DISPLAY) {
|
|
StyleChanger dummy(mi.base, LM_ST_TEXT);
|
|
InsetMathGrid::metrics(mi, dim);
|
|
} else {
|
|
InsetMathGrid::metrics(mi, dim);
|
|
}
|
|
}
|
|
|
|
|
|
void InsetMathSubstack::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
InsetMathGrid::draw(pi, x + 1, y);
|
|
}
|
|
|
|
|
|
bool InsetMathSubstack::getStatus(Cursor & cur, FuncRequest const & cmd,
|
|
FuncStatus & flag) const
|
|
{
|
|
switch (cmd.action) {
|
|
case LFUN_INSET_MODIFY: {
|
|
istringstream is(to_utf8(cmd.argument()));
|
|
string s;
|
|
is >> s;
|
|
if (s != "tabular")
|
|
break;
|
|
is >> s;
|
|
string const name = "substack";
|
|
if (s == "add-vline-left" || s == "add-vline-right") {
|
|
flag.message(bformat(
|
|
from_utf8(N_("Can't add vertical grid lines in '%1$s'")),
|
|
from_utf8(name)));
|
|
flag.setEnabled(false);
|
|
return true;
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
return InsetMathGrid::getStatus(cur, cmd, flag);
|
|
}
|
|
|
|
|
|
void InsetMathSubstack::infoize(odocstream & os) const
|
|
{
|
|
os << "Substack ";
|
|
}
|
|
|
|
|
|
void InsetMathSubstack::write(WriteStream & os) const
|
|
{
|
|
MathEnsurer ensurer(os);
|
|
os << "\\substack{";
|
|
InsetMathGrid::write(os);
|
|
os << "}\n";
|
|
}
|
|
|
|
|
|
void InsetMathSubstack::normalize(NormalStream & os) const
|
|
{
|
|
os << "[substack ";
|
|
InsetMathGrid::normalize(os);
|
|
os << ']';
|
|
}
|
|
|
|
|
|
void InsetMathSubstack::maple(MapleStream & os) const
|
|
{
|
|
os << "substack(";
|
|
InsetMathGrid::maple(os);
|
|
os << ')';
|
|
}
|
|
|
|
|
|
void InsetMathSubstack::validate(LaTeXFeatures & features) const
|
|
{
|
|
features.require("amsmath");
|
|
InsetMathGrid::validate(features);
|
|
}
|
|
|
|
|
|
} // namespace lyx
|