2022-06-08 21:38:26 +08:00
|
|
|
/*
|
|
|
|
Copyright (c) 2008-2022 Jan W. Krieger (<jan@jkrieger.de>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This software is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License (LGPL) as published by
|
|
|
|
the Free Software Foundation, either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License (LGPL) for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License (LGPL)
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "jkqtmathtext/nodes/jkqtmathtextinstructionnode.h"
|
|
|
|
#include "jkqtmathtext/jkqtmathtexttools.h"
|
|
|
|
#include "jkqtmathtext/jkqtmathtext.h"
|
|
|
|
#include "jkqtcommon/jkqtpcodestructuring.h"
|
|
|
|
#include "jkqtcommon/jkqtpstringtools.h"
|
|
|
|
#include <cmath>
|
|
|
|
#include <QFontMetricsF>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QFontDatabase>
|
|
|
|
#include <QFontInfo>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QFont>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
JKQTMathTextInstruction1Node::JKQTMathTextInstruction1Node(JKQTMathText* _parent, const QString& _instructionName, JKQTMathTextNode* child, const QStringList& _parameters):
|
|
|
|
JKQTMathTextSingleChildNode(child, _parent),
|
|
|
|
instructionName(_instructionName),
|
|
|
|
parameters(_parameters)
|
2022-06-08 21:38:26 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextInstruction1Node::~JKQTMathTextInstruction1Node() {
|
|
|
|
}
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
const QString& JKQTMathTextInstruction1Node::getInstructionName() const {
|
|
|
|
return this->instructionName;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QStringList &JKQTMathTextInstruction1Node::getParameters() const {
|
|
|
|
return this->parameters;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-25 05:22:54 +08:00
|
|
|
|
|
|
|
JKQTMathTextSimpleInstructionNode::JKQTMathTextSimpleInstructionNode(JKQTMathText *_parent, const QString &_name, const QStringList &_parameters):
|
|
|
|
JKQTMathTextNode(_parent),
|
|
|
|
instructionName(_name),
|
|
|
|
parameters(_parameters)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextSimpleInstructionNode::~JKQTMathTextSimpleInstructionNode()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QString JKQTMathTextSimpleInstructionNode::getTypeName() const
|
|
|
|
{
|
|
|
|
return QLatin1String("JKQTMathTextSimpleInstructionNode(")+instructionName+")";
|
|
|
|
}
|
|
|
|
|
|
|
|
double JKQTMathTextSimpleInstructionNode::draw(QPainter &painter, double x, double y, JKQTMathTextEnvironment currentEv, const JKQTMathTextNodeSize *prevNodeSize)
|
|
|
|
{
|
|
|
|
doDrawBoxes(painter, x, y, currentEv);
|
|
|
|
fillInstructions();
|
|
|
|
QFont f=currentEv.getFont(parentMathText);
|
|
|
|
f.setStyleStrategy(QFont::PreferDefault);
|
|
|
|
const QFontMetricsF fm(f);
|
|
|
|
const QString txt=executeInstruction();
|
|
|
|
const QRectF bb=fm.boundingRect(txt);
|
|
|
|
|
|
|
|
painter.setFont(f);
|
|
|
|
painter.drawText(x,y,txt);
|
|
|
|
return x+bb.width();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool JKQTMathTextSimpleInstructionNode::toHtml(QString &html, JKQTMathTextEnvironment currentEv, JKQTMathTextEnvironment defaultEv)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
const QString txt=executeInstruction();
|
|
|
|
html+=txt;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &JKQTMathTextSimpleInstructionNode::getInstructionName() const
|
|
|
|
{
|
|
|
|
return instructionName;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QStringList &JKQTMathTextSimpleInstructionNode::getParameters() const
|
|
|
|
{
|
|
|
|
return parameters;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool JKQTMathTextSimpleInstructionNode::supportsInstructionName(const QString &instructionName)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
return instructions.contains(instructionName);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t JKQTMathTextSimpleInstructionNode::countParametersOfInstruction(const QString &instructionName)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
if (instructions.contains(instructionName)) return instructions[instructionName].NParams;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void JKQTMathTextSimpleInstructionNode::getSizeInternal(QPainter &painter, JKQTMathTextEnvironment currentEv, double &width, double &baselineHeight, double &overallHeight, double &strikeoutPos, const JKQTMathTextNodeSize */*prevNodeSize*/)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
QFont f=currentEv.getFont(parentMathText);
|
|
|
|
f.setStyleStrategy(QFont::PreferDefault);
|
|
|
|
const QFontMetricsF fm(f);
|
|
|
|
const QString txt=executeInstruction();
|
|
|
|
const QRectF bb=fm.boundingRect(txt);
|
|
|
|
width=bb.width();
|
2022-07-26 05:29:32 +08:00
|
|
|
baselineHeight=-bb.y();
|
2022-07-25 05:22:54 +08:00
|
|
|
overallHeight=bb.height();
|
|
|
|
strikeoutPos=fm.strikeOutPos();
|
|
|
|
}
|
|
|
|
|
|
|
|
QHash<QString, JKQTMathTextSimpleInstructionNode::InstructionProperties> JKQTMathTextSimpleInstructionNode::instructions;
|
|
|
|
|
|
|
|
void JKQTMathTextSimpleInstructionNode::fillInstructions()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
InstructionProperties i([](const QStringList& parameters) -> QString {
|
|
|
|
bool ok=false;
|
2022-07-26 05:29:32 +08:00
|
|
|
qlonglong code=parameters.value(0, "0").toLongLong(&ok, 16);
|
2022-07-25 05:22:54 +08:00
|
|
|
ok=ok&&(code>=0);
|
2022-07-27 04:27:16 +08:00
|
|
|
if (ok&&(code>=0)&&(code<=0xFFFFFFFF)) return QString::fromStdString(jkqtp_UnicodeToUTF8(static_cast<uint32_t>(code)));
|
|
|
|
else return QString();
|
2022-07-25 05:22:54 +08:00
|
|
|
}, 1);
|
|
|
|
instructions["unicode"]= i;
|
2022-07-27 04:27:16 +08:00
|
|
|
instructions["usym"]= i;
|
2022-07-25 05:22:54 +08:00
|
|
|
}
|
2022-07-26 05:29:32 +08:00
|
|
|
{
|
|
|
|
InstructionProperties i([](const QStringList& parameters) -> QString {
|
|
|
|
bool ok=false;
|
|
|
|
qlonglong code=parameters.value(0, "0").toLongLong(&ok, 16);
|
|
|
|
ok=ok&&(code>=0);
|
|
|
|
if (ok) {
|
|
|
|
QByteArray bytes;
|
|
|
|
while (code!=0) {
|
|
|
|
bytes.prepend(static_cast<char>(code&0xFF));
|
|
|
|
code=code>>8;
|
|
|
|
}
|
|
|
|
return QString::fromUtf8(bytes);
|
|
|
|
}
|
|
|
|
return QChar(0);
|
|
|
|
}, 1);
|
|
|
|
instructions["utfeight"]= i;
|
|
|
|
}
|
2022-07-25 05:22:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QString JKQTMathTextSimpleInstructionNode::executeInstruction() const
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
return instructions.value(getInstructionName(), InstructionProperties()).evaluator(getParameters());
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextSimpleInstructionNode::InstructionProperties::InstructionProperties():
|
|
|
|
NParams(0),
|
|
|
|
evaluator([](const QStringList&) { return QString(); })
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextSimpleInstructionNode::InstructionProperties::InstructionProperties(const EvaluateInstructionFunctor &_evaluator, size_t _NParams):
|
|
|
|
NParams(_NParams),
|
|
|
|
evaluator(_evaluator)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
JKQTMathTextModifiedTextPropsInstructionNode::JKQTMathTextModifiedTextPropsInstructionNode(JKQTMathText* _parent, const QString& name, JKQTMathTextNode* child, const QStringList& parameters):
|
|
|
|
JKQTMathTextInstruction1Node(_parent, name, child, parameters)
|
2022-06-08 21:38:26 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
JKQTMathTextModifiedTextPropsInstructionNode::~JKQTMathTextModifiedTextPropsInstructionNode() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString JKQTMathTextModifiedTextPropsInstructionNode::getTypeName() const
|
|
|
|
{
|
|
|
|
return QLatin1String("JKQTMathTextModifiedTextPropsInstructionNode(")+instructionName+")";
|
|
|
|
}
|
|
|
|
|
|
|
|
void JKQTMathTextModifiedTextPropsInstructionNode::getSizeInternal(QPainter& painter, JKQTMathTextEnvironment currentEv, double& width, double& baselineHeight, double& overallHeight, double& strikeoutPos, const JKQTMathTextNodeSize* /*prevNodeSize*/) {
|
2022-06-08 21:38:26 +08:00
|
|
|
JKQTMathTextEnvironment ev=currentEv;
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
executeInstruction(ev);
|
2022-06-08 21:38:26 +08:00
|
|
|
|
2022-06-20 04:36:38 +08:00
|
|
|
getChild()->getSize(painter, ev, width, baselineHeight, overallHeight, strikeoutPos);
|
2022-07-09 05:15:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
double JKQTMathTextModifiedTextPropsInstructionNode::draw(QPainter& painter, double x, double y, JKQTMathTextEnvironment currentEv, const JKQTMathTextNodeSize* /*prevNodeSize*/) {
|
|
|
|
doDrawBoxes(painter, x, y, currentEv);
|
|
|
|
JKQTMathTextEnvironment ev=currentEv;
|
|
|
|
|
|
|
|
executeInstruction(ev);
|
|
|
|
|
|
|
|
return getChild()->draw(painter, x, y, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool JKQTMathTextModifiedTextPropsInstructionNode::toHtml(QString &html, JKQTMathTextEnvironment currentEv, JKQTMathTextEnvironment defaultEv) {
|
|
|
|
JKQTMathTextEnvironment ev=currentEv;
|
|
|
|
fillInstructions();
|
|
|
|
executeInstruction(ev);
|
|
|
|
|
|
|
|
return getChild()->toHtml(html, ev, defaultEv);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool JKQTMathTextModifiedTextPropsInstructionNode::supportsInstructionName(const QString &instructionName)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
return instructions.contains(instructionName);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t JKQTMathTextModifiedTextPropsInstructionNode::countParametersOfInstruction(const QString &instructionName)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
if (instructions.contains(instructionName)) return instructions[instructionName].NParams;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void JKQTMathTextModifiedTextPropsInstructionNode::modifyInMathEnvironment(const QString &instructionName, bool &insideMath, const QStringList& params)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
if (instructions.contains(instructionName)) {
|
|
|
|
JKQTMathTextEnvironment ev;
|
|
|
|
ev.insideMath=insideMath;
|
|
|
|
instructions[instructionName].modifier(ev, params);
|
|
|
|
insideMath=ev.insideMath;
|
2022-06-08 21:38:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
|
|
|
|
void JKQTMathTextModifiedTextPropsInstructionNode::executeInstruction(JKQTMathTextEnvironment &ev) const
|
|
|
|
{
|
|
|
|
instructions.value(getInstructionName(), InstructionProperties()).modifier(ev, getParameters());
|
|
|
|
}
|
|
|
|
|
|
|
|
QHash<QString, JKQTMathTextModifiedTextPropsInstructionNode::InstructionProperties> JKQTMathTextModifiedTextPropsInstructionNode::instructions;
|
|
|
|
|
|
|
|
void JKQTMathTextModifiedTextPropsInstructionNode::fillInstructions()
|
|
|
|
{
|
|
|
|
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.bold=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["bf"] = i;
|
|
|
|
instructions["textbf"] = i;
|
|
|
|
instructions["mathbf"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.italic=!ev.italic;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["em"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.italic=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["it"] = i;
|
|
|
|
instructions["textit"] = i;
|
|
|
|
instructions["mathit"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& parameters) {
|
|
|
|
ev.color=jkqtp_String2QColor(parameters.value(0, ev.color.name()));
|
|
|
|
}, 1);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["textcolor"] = i;
|
|
|
|
instructions["mathcolor"] = i;
|
|
|
|
instructions["color"]= i;
|
|
|
|
}
|
2022-07-25 04:31:38 +08:00
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& parameters) {
|
|
|
|
ev.customFontName=parameters.value(0, "");
|
|
|
|
ev.font=MTECustomFont;
|
|
|
|
}, 1);
|
|
|
|
instructions["userfont"] = i;
|
|
|
|
}
|
2022-07-09 05:15:42 +08:00
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.italic=true; ev.insideMath=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["ensuremath"] = i;
|
|
|
|
instructions["equation"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.smallCaps=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["sc"] = i;
|
|
|
|
instructions["textsc"] = i;
|
|
|
|
instructions["mathsc"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.underlined=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["ul"] = i;
|
|
|
|
instructions["underline"] = i;
|
|
|
|
instructions["underlined"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.overline=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["ol"] = i;
|
|
|
|
instructions["overline"] = i;
|
|
|
|
instructions["overlined"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.strike=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["strike"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEroman;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["rm"] = i;
|
|
|
|
instructions["textrm"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEroman;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["mathrm"] = i;
|
|
|
|
instructions["unit"] = i;
|
|
|
|
instructions["operatorname"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.bold=true;
|
|
|
|
ev.italic=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["mathbfit"] = i;
|
|
|
|
instructions["bfit"] = i;
|
|
|
|
instructions["textbfit"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.insideMath=false;
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEroman;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["text"] = i;
|
|
|
|
instructions["mbox"] = i;
|
|
|
|
instructions["ensuretext"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEroman;
|
|
|
|
ev.italic=false;
|
|
|
|
ev.bold=true;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["mat"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEcaligraphic;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-25 04:31:38 +08:00
|
|
|
instructions["mathcal"]= i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEcaligraphic;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["cal"] = i;
|
|
|
|
instructions["textcal"] = i;
|
2022-07-25 04:31:38 +08:00
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEcaligraphic;
|
|
|
|
ev.italic=false;
|
|
|
|
ev.bold=true;
|
|
|
|
}, 0);
|
|
|
|
instructions["mathbfcal"]= i;
|
2022-07-09 05:15:42 +08:00
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEcaligraphic;
|
|
|
|
ev.bold=true;
|
|
|
|
}, 0);
|
2022-07-25 04:31:38 +08:00
|
|
|
instructions["bbfcal"] = i;
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["textfcal"] = i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEfraktur;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["frak"] = i;
|
|
|
|
instructions["textfrak"] = i;
|
2022-07-25 04:31:38 +08:00
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEfraktur;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["mathfrak"]= i;
|
|
|
|
}
|
2022-07-25 04:31:38 +08:00
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEfraktur;
|
|
|
|
ev.bold=true;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
|
|
|
instructions["mathbffrak"]= i;
|
|
|
|
}
|
2022-07-09 05:15:42 +08:00
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEfraktur;
|
|
|
|
ev.bold=true;
|
|
|
|
}, 0);
|
2022-07-25 04:31:38 +08:00
|
|
|
instructions["bffrak"] = i;
|
|
|
|
instructions["textbffrak"] = i;
|
2022-07-09 05:15:42 +08:00
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEblackboard;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["bb"] = i;
|
|
|
|
instructions["textbb"] = i;
|
|
|
|
instructions["mathbb"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEtypewriter;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["tt"] = i;
|
|
|
|
instructions["texttt"] = i;
|
2022-07-25 04:31:38 +08:00
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEtypewriter;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["mathtt"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
2022-07-25 04:31:38 +08:00
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEtypewriter;
|
|
|
|
ev.bold=true;
|
|
|
|
}, 0);
|
|
|
|
instructions["bftt"] = i;
|
|
|
|
instructions["textbftt"] = i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEtypewriter;
|
2022-07-24 20:50:28 +08:00
|
|
|
ev.italic=false;
|
2022-07-25 04:31:38 +08:00
|
|
|
ev.bold=true;
|
|
|
|
}, 0);
|
|
|
|
instructions["mathbftt"]= i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEsans;
|
2022-07-24 20:50:28 +08:00
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["sf"] = i;
|
|
|
|
instructions["textsf"] = i;
|
2022-07-25 04:31:38 +08:00
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEsans;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
|
|
|
instructions["mathsf"] = i;
|
2022-07-09 05:15:42 +08:00
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEsans;
|
|
|
|
ev.italic=true;
|
|
|
|
}, 0);
|
2022-07-25 04:31:38 +08:00
|
|
|
instructions["itsf"] = i;
|
|
|
|
instructions["textitsf"] = i;
|
|
|
|
instructions["mathitsf"]= i;
|
2022-07-09 05:15:42 +08:00
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEscript;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["script"] = i;
|
|
|
|
instructions["scr"] = i;
|
|
|
|
instructions["textscript"] = i;
|
|
|
|
instructions["textscr"] = i;
|
2022-07-25 04:31:38 +08:00
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEscript;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["mathscript"] = i;
|
|
|
|
instructions["mathscr"]= i;
|
|
|
|
}
|
2022-07-25 04:31:38 +08:00
|
|
|
{
|
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEscript;
|
|
|
|
ev.bold=true;
|
|
|
|
}, 0);
|
|
|
|
instructions["bfscript"] = i;
|
|
|
|
instructions["bfscr"] = i;
|
|
|
|
instructions["textbfscript"] = i;
|
|
|
|
instructions["textbfscr"] = i;
|
|
|
|
}
|
2022-07-09 05:15:42 +08:00
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.font=JKQTMathTextEnvironmentFont::MTEscript;
|
|
|
|
ev.bold=true;
|
|
|
|
ev.italic=false;
|
|
|
|
}, 0);
|
2022-07-25 04:31:38 +08:00
|
|
|
instructions["mathbfscript"] = i;
|
|
|
|
instructions["mathbfscr"]= i;
|
2022-07-09 05:15:42 +08:00
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.fontSize=ev.fontSize/0.8;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["displaystyle"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.fontSize=ev.fontSize*0.8;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["scriptstyle"]= i;
|
|
|
|
}
|
|
|
|
{
|
2022-07-24 20:50:28 +08:00
|
|
|
InstructionProperties i([](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/) {
|
|
|
|
ev.fontSize=ev.fontSize*0.8*0.8;
|
|
|
|
}, 0);
|
2022-07-09 05:15:42 +08:00
|
|
|
instructions["scriptscriptstyle"]= i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextModifiedTextPropsInstructionNode::InstructionProperties::InstructionProperties():
|
|
|
|
NParams(0),
|
|
|
|
modifier([](JKQTMathTextEnvironment&, const QStringList&) {})
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextModifiedTextPropsInstructionNode::InstructionProperties::InstructionProperties(const ModifyEnvironmentFunctor &_modifier, size_t _NParams):
|
2022-07-22 04:17:37 +08:00
|
|
|
NParams(_NParams),
|
|
|
|
modifier(_modifier)
|
2022-07-09 05:15:42 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JKQTMathTextBoxInstructionNode::JKQTMathTextBoxInstructionNode(JKQTMathText* _parent, const QString& name, JKQTMathTextNode* child, const QStringList& parameters):
|
|
|
|
JKQTMathTextInstruction1Node(_parent, name, child, parameters)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextBoxInstructionNode::~JKQTMathTextBoxInstructionNode() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString JKQTMathTextBoxInstructionNode::getTypeName() const
|
|
|
|
{
|
|
|
|
return QLatin1String("JKQTMathTextBoxInstructionNode(")+instructionName+")";
|
|
|
|
}
|
|
|
|
|
|
|
|
void JKQTMathTextBoxInstructionNode::getSizeInternal(QPainter& painter, JKQTMathTextEnvironment currentEv, double& width, double& baselineHeight, double& overallHeight, double& strikeoutPos, const JKQTMathTextNodeSize* /*prevNodeSize*/) {
|
|
|
|
JKQTMathTextEnvironment ev=currentEv;
|
|
|
|
|
|
|
|
const auto& inst=instructions.value(getInstructionName());
|
|
|
|
inst.modifier(ev, getParameters());
|
|
|
|
const QPen p=inst.pen(ev, getParameters(), parentMathText);
|
|
|
|
const QBrush b=inst.brush(ev, getParameters(), parentMathText);
|
|
|
|
const QFontMetricsF fmNonItalic(JKQTMathTextGetNonItalic(currentEv.getFont(parentMathText)));
|
|
|
|
const double lw=p.widthF();
|
|
|
|
const double padding=inst.paddingFactor*fmNonItalic.tightBoundingRect("x").width();
|
|
|
|
|
|
|
|
getChild()->getSize(painter, ev, width, baselineHeight, overallHeight, strikeoutPos);
|
|
|
|
width=width+2.0*(padding+lw/2.0);
|
|
|
|
baselineHeight=baselineHeight+padding+lw/2.0;
|
|
|
|
overallHeight=overallHeight+2.0*(padding+lw/2.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
double JKQTMathTextBoxInstructionNode::draw(QPainter& painter, double x, double y, JKQTMathTextEnvironment currentEv, const JKQTMathTextNodeSize* /*prevNodeSize*/) {
|
2022-06-08 21:38:26 +08:00
|
|
|
doDrawBoxes(painter, x, y, currentEv);
|
|
|
|
JKQTMathTextEnvironment ev=currentEv;
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
const auto& inst=instructions.value(getInstructionName());
|
|
|
|
inst.modifier(ev, getParameters());
|
|
|
|
const QPen p=inst.pen(ev, getParameters(), parentMathText);
|
|
|
|
const QBrush b=inst.brush(ev, getParameters(), parentMathText);
|
|
|
|
const QFontMetricsF fmNonItalic(JKQTMathTextGetNonItalic(currentEv.getFont(parentMathText)));
|
|
|
|
const double lw=p.widthF();
|
|
|
|
const double padding=inst.paddingFactor*fmNonItalic.tightBoundingRect("x").width();
|
|
|
|
const double rr=inst.roundingFactor*fmNonItalic.tightBoundingRect("x").width();
|
|
|
|
double width=0, baselineHeight=0, overallHeight=0, strikeoutPos=0;
|
|
|
|
getChild()->getSize(painter, ev, width, baselineHeight, overallHeight, strikeoutPos);
|
|
|
|
|
|
|
|
{
|
2022-07-09 16:57:46 +08:00
|
|
|
painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
|
2022-07-09 05:15:42 +08:00
|
|
|
painter.setBrush(b);
|
2022-06-08 21:38:26 +08:00
|
|
|
painter.setPen(p);
|
2022-07-09 05:15:42 +08:00
|
|
|
const QRectF rect(x+lw/2.0, y-baselineHeight-padding-lw/2.0, width+2.0*padding, overallHeight+2.0*padding);
|
|
|
|
if (rr>0) painter.drawRoundedRect(rect, rr, rr, Qt::AbsoluteSize);
|
|
|
|
else painter.drawRect(rect);
|
|
|
|
if (inst.doubleLine) {
|
|
|
|
painter.setBrush(Qt::NoBrush);
|
|
|
|
QPen p2=p;
|
|
|
|
p2.setWidthF(p.widthF()*0.6);
|
|
|
|
const QRectF recti(x+lw*2.5, y-baselineHeight-lw/2.0-padding+2.0*lw, width+2.0*padding-4.0*lw, overallHeight+2.0*padding-4.0*lw);
|
|
|
|
if (rr>0) painter.drawRoundedRect(recti, rr, rr, Qt::AbsoluteSize);
|
|
|
|
else painter.drawRect(recti);
|
|
|
|
}
|
2022-06-08 21:38:26 +08:00
|
|
|
}
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
double xnew = getChild()->draw(painter, x+padding+lw/2.0, y, ev);
|
|
|
|
|
|
|
|
return xnew+padding+lw/2.0;
|
2022-06-08 21:38:26 +08:00
|
|
|
}
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
bool JKQTMathTextBoxInstructionNode::toHtml(QString &html, JKQTMathTextEnvironment currentEv, JKQTMathTextEnvironment defaultEv) {
|
2022-06-08 21:38:26 +08:00
|
|
|
JKQTMathTextEnvironment ev=currentEv;
|
2022-07-09 05:15:42 +08:00
|
|
|
fillInstructions();
|
|
|
|
const auto& inst=instructions.value(getInstructionName());
|
|
|
|
inst.modifier(ev, getParameters());
|
|
|
|
const QPen p=inst.pen(ev, getParameters(), parentMathText);
|
|
|
|
const QBrush b=inst.brush(ev, getParameters(), parentMathText);
|
|
|
|
const QFontMetricsF fmNonItalic(JKQTMathTextGetNonItalic(currentEv.getFont(parentMathText)));
|
2022-07-22 04:17:37 +08:00
|
|
|
//const double lw=p.widthF();
|
2022-07-09 05:15:42 +08:00
|
|
|
const double padding=inst.paddingFactor*fmNonItalic.tightBoundingRect("x").width();
|
2022-07-22 04:17:37 +08:00
|
|
|
//const double rr=inst.roundingFactor*fmNonItalic.tightBoundingRect("x").width();
|
2022-07-09 05:15:42 +08:00
|
|
|
QString s=QString("padding: %1px").arg(padding);
|
|
|
|
if (p!=Qt::NoPen) {
|
|
|
|
if (s.size()>0 && s.right(2)!="; ") s=s+"; ";
|
|
|
|
if (p.widthF()>0 && p.color()!=Qt::transparent) s=s+"border-color: "+p.color().name();
|
|
|
|
if (s.size()>0 && s.right(2)!="; ") s=s+"; ";
|
|
|
|
if (p.widthF()>0 && p.color()!=Qt::transparent) s=s+QString("border-width: %1px").arg(p.width());
|
|
|
|
}
|
|
|
|
if (b!=Qt::NoBrush) {
|
|
|
|
if (s.size()>0 && s.right(2)!="; ") s=s+"; ";
|
|
|
|
if (b.color()!=Qt::transparent) s=s+"background-color: "+b.color().name();
|
|
|
|
}
|
2022-06-08 21:38:26 +08:00
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
if (s.size()>0) html=html+ QString("<span style=\"%1\">").arg(s);
|
|
|
|
bool ok=getChild()->toHtml(html, ev, defaultEv);
|
|
|
|
if (s.size()>0) html=html+"</span>";
|
|
|
|
return ok;
|
|
|
|
}
|
2022-06-08 21:38:26 +08:00
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
bool JKQTMathTextBoxInstructionNode::supportsInstructionName(const QString &instructionName)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
return instructions.contains(instructionName);
|
2022-06-08 21:38:26 +08:00
|
|
|
}
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
size_t JKQTMathTextBoxInstructionNode::countParametersOfInstruction(const QString &instructionName)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
if (instructions.contains(instructionName)) return instructions[instructionName].NParams;
|
|
|
|
return 0;
|
2022-06-08 21:38:26 +08:00
|
|
|
}
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
void JKQTMathTextBoxInstructionNode::modifyInMathEnvironment(const QString &instructionName, bool &insideMath, const QStringList& params)
|
|
|
|
{
|
|
|
|
fillInstructions();
|
|
|
|
if (instructions.contains(instructionName)) {
|
|
|
|
JKQTMathTextEnvironment ev;
|
|
|
|
ev.insideMath=insideMath;
|
|
|
|
instructions[instructionName].modifier(ev, params);
|
|
|
|
insideMath=ev.insideMath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QHash<QString, JKQTMathTextBoxInstructionNode::InstructionProperties> JKQTMathTextBoxInstructionNode::instructions;
|
|
|
|
|
|
|
|
void JKQTMathTextBoxInstructionNode::fillInstructions()
|
|
|
|
{
|
|
|
|
|
|
|
|
{
|
|
|
|
InstructionProperties i(InstructionProperties::NoModification,
|
|
|
|
InstructionProperties::DefaultPen,
|
|
|
|
InstructionProperties::NoBrush,
|
|
|
|
InstructionProperties::DefaultPadding,
|
|
|
|
/*Nparams=*/0);
|
|
|
|
instructions["fbox"] = i;
|
|
|
|
instructions["framebox"] = i;
|
|
|
|
instructions["boxed"] = i;
|
|
|
|
instructions["framed"] = i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i(InstructionProperties::NoModification,
|
|
|
|
InstructionProperties::DefaultPen,
|
|
|
|
InstructionProperties::NoBrush,
|
|
|
|
InstructionProperties::DefaultPadding,
|
|
|
|
/*Nparams=*/0);
|
|
|
|
i.doubleLine=true;
|
|
|
|
instructions["doublebox"] = i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i(InstructionProperties::NoModification,
|
|
|
|
InstructionProperties::DefaultPen,
|
|
|
|
InstructionProperties::NoBrush,
|
|
|
|
InstructionProperties::DefaultPadding,
|
|
|
|
/*Nparams=*/0);
|
|
|
|
i.roundingFactor=0.7;
|
|
|
|
instructions["ovalbox"] = i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i(InstructionProperties::NoModification,
|
|
|
|
[](JKQTMathTextEnvironment& ev, const QStringList& parameters, JKQTMathText* parent){
|
|
|
|
QPen p=InstructionProperties::DefaultPen(ev, parameters, parent);
|
|
|
|
p.setWidthF(p.widthF()*1.5);
|
|
|
|
return p;
|
|
|
|
},
|
|
|
|
InstructionProperties::NoBrush,
|
|
|
|
InstructionProperties::DefaultPadding,
|
|
|
|
/*Nparams=*/0);
|
|
|
|
i.roundingFactor=0.8;
|
|
|
|
instructions["Ovalbox"] = i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i(InstructionProperties::NoModification,
|
|
|
|
InstructionProperties::DefaultPen,
|
|
|
|
InstructionProperties::NoBrush,
|
|
|
|
InstructionProperties::DefaultPadding,
|
|
|
|
/*Nparams=*/0);
|
|
|
|
i.roundingFactor=0.7;
|
|
|
|
i.doubleLine=true;
|
|
|
|
instructions["ovaldoublebox"] = i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i(InstructionProperties::NoModification,
|
|
|
|
[](JKQTMathTextEnvironment& ev, const QStringList& parameters, JKQTMathText* parent){
|
|
|
|
QPen p=InstructionProperties::DefaultPen(ev, parameters, parent);
|
|
|
|
p.setColor(jkqtp_String2QColor(parameters.value(0, p.color().name())));
|
|
|
|
return p;
|
|
|
|
},
|
|
|
|
InstructionProperties::NoBrush,
|
|
|
|
InstructionProperties::DefaultPadding,
|
|
|
|
/*Nparams=*/1);
|
|
|
|
instructions["colorbox"] = i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i(InstructionProperties::NoModification,
|
|
|
|
InstructionProperties::NoPen,
|
2022-07-22 04:17:37 +08:00
|
|
|
[](JKQTMathTextEnvironment& /*ev*/, const QStringList& parameters, JKQTMathText* /*parent*/){
|
2022-07-09 05:15:42 +08:00
|
|
|
return QBrush(jkqtp_String2QColor(parameters.value(0, QColor(Qt::transparent).name())), Qt::SolidPattern);
|
|
|
|
},
|
|
|
|
InstructionProperties::DefaultPadding,
|
|
|
|
/*Nparams=*/1);
|
|
|
|
instructions["shaded"] = i;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
InstructionProperties i(InstructionProperties::NoModification,
|
|
|
|
[](JKQTMathTextEnvironment& ev, const QStringList& parameters, JKQTMathText* parent){
|
|
|
|
QPen p=InstructionProperties::DefaultPen(ev, parameters, parent);
|
|
|
|
p.setColor(jkqtp_String2QColor(parameters.value(0, p.color().name())));
|
|
|
|
return p;
|
|
|
|
},
|
2022-07-22 04:17:37 +08:00
|
|
|
[](JKQTMathTextEnvironment& /*ev*/, const QStringList& parameters, JKQTMathText* /*parent*/){
|
2022-07-09 05:15:42 +08:00
|
|
|
return QBrush(jkqtp_String2QColor(parameters.value(1, QColor(Qt::transparent).name())), Qt::SolidPattern);
|
|
|
|
},
|
|
|
|
InstructionProperties::DefaultPadding,
|
|
|
|
/*Nparams=*/2);
|
|
|
|
instructions["fcolorbox"] = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextBoxInstructionNode::InstructionProperties::ModifyEnvironmentFunctor JKQTMathTextBoxInstructionNode::InstructionProperties::NoModification=
|
2022-07-22 04:17:37 +08:00
|
|
|
[](JKQTMathTextEnvironment& /*ev*/, const QStringList& /*parameters*/){};
|
2022-07-24 20:50:28 +08:00
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
JKQTMathTextBoxInstructionNode::InstructionProperties::GetBoxPenFunctor JKQTMathTextBoxInstructionNode::InstructionProperties::DefaultPen=
|
2022-07-22 04:17:37 +08:00
|
|
|
[](JKQTMathTextEnvironment& ev, const QStringList& /*parameters*/, JKQTMathText* parent){ return QPen(ev.color, QFontMetricsF(ev.getFont(parent)).lineWidth(), Qt::SolidLine); };
|
2022-07-24 20:50:28 +08:00
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
JKQTMathTextBoxInstructionNode::InstructionProperties::GetBoxPenFunctor JKQTMathTextBoxInstructionNode::InstructionProperties::NoPen=
|
2022-07-22 04:17:37 +08:00
|
|
|
[](JKQTMathTextEnvironment& /*ev*/, const QStringList& /*parameters*/, JKQTMathText* /*parent*/){ return Qt::NoPen; };
|
2022-07-24 20:50:28 +08:00
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
JKQTMathTextBoxInstructionNode::InstructionProperties::GetBoxBrushFunctor JKQTMathTextBoxInstructionNode::InstructionProperties::NoBrush=
|
2022-07-22 04:17:37 +08:00
|
|
|
[](JKQTMathTextEnvironment& /*ev*/, const QStringList& /*parameters*/, JKQTMathText* /*parent*/){ return Qt::NoBrush; };
|
2022-07-24 20:50:28 +08:00
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
double JKQTMathTextBoxInstructionNode::InstructionProperties::DefaultPadding=0.5;
|
|
|
|
|
|
|
|
JKQTMathTextBoxInstructionNode::InstructionProperties::InstructionProperties():
|
|
|
|
InstructionProperties(NoModification, DefaultPen, NoBrush, DefaultPadding, 0)
|
|
|
|
{
|
|
|
|
|
2022-06-08 21:38:26 +08:00
|
|
|
}
|
|
|
|
|
2022-07-09 05:15:42 +08:00
|
|
|
JKQTMathTextBoxInstructionNode::InstructionProperties::InstructionProperties(const GetBoxPenFunctor &_pen, const GetBoxBrushFunctor &_brush, double _paddingFactor, size_t _NParams):
|
|
|
|
InstructionProperties(NoModification, _pen, _brush, _paddingFactor, _NParams)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
JKQTMathTextBoxInstructionNode::InstructionProperties::InstructionProperties(const ModifyEnvironmentFunctor &_modifier, const GetBoxPenFunctor &_pen, const GetBoxBrushFunctor &_brush, double _paddingFactor, size_t _NParams):
|
2022-07-22 04:17:37 +08:00
|
|
|
NParams(_NParams),
|
2022-07-09 05:15:42 +08:00
|
|
|
modifier(_modifier),
|
|
|
|
pen(_pen),
|
|
|
|
brush(_brush),
|
|
|
|
paddingFactor(_paddingFactor),
|
|
|
|
doubleLine(false),
|
|
|
|
roundingFactor(0.0)
|
|
|
|
{
|
|
|
|
|
2022-06-08 21:38:26 +08:00
|
|
|
}
|