/* Copyright (c) 2008-2022 Jan W. Krieger () 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 . */ #include "jkqtmathtext/nodes/jkqtmathtextbracenode.h" #include "jkqtmathtext/jkqtmathtexttools.h" #include "jkqtmathtext/jkqtmathtext.h" #include "jkqtcommon/jkqtpcodestructuring.h" #include "jkqtcommon/jkqtpstringtools.h" #include #include #include #include #include #include #include #include JKQTMathTextBraceNode::JKQTMathTextBraceNode(JKQTMathText* _parent, JKQTMathTextBraceType openbrace, JKQTMathTextBraceType closebrace, JKQTMathTextNode* child): JKQTMathTextSingleChildNode(child, _parent) { this->openbrace=openbrace; this->closebrace=closebrace; } JKQTMathTextBraceNode::~JKQTMathTextBraceNode() { } void JKQTMathTextBraceNode::getSizeInternal(QPainter& painter, JKQTMathTextEnvironment currentEv, double& width, double& baselineHeight, double& overallHeight, double& strikeoutPos, const JKQTMathTextNodeSize* prevNodeSize) { double braceWidth=0, braceHeight=0; getSizeInternalAndBrace(painter, currentEv, width, baselineHeight, overallHeight, strikeoutPos, braceWidth, braceHeight, prevNodeSize); } void JKQTMathTextBraceNode::getSizeInternalAndBrace(QPainter &painter, JKQTMathTextEnvironment currentEv, double &width, double &baselineHeight, double &overallHeight, double &strikeoutPos, double &bracewidth, double &braceheight, const JKQTMathTextNodeSize */*prevNodeSize*/) { const JKQTMathTextEnvironment ev=currentEv; getChild()->getSize(painter, currentEv, width, baselineHeight, overallHeight, strikeoutPos); const double cAscentAboveStrike=baselineHeight-strikeoutPos; const double cDescentBelowStrike=overallHeight-baselineHeight+strikeoutPos; //qDebug()<<"getSizeInternalAndBrace(): showOpeningBrace="<0) painter.drawLine(l); painter.setPen(p); } else if (openbrace==MTBTDoubleLine) { const double y1=y+(nodeOverallHeight-nodeBaselineHeight); const double y2=y-nodeBaselineHeight; QPen plocal=p; plocal.setWidthF(plocal.widthF()*absnorm_linewidth_factor); painter.setPen(plocal); const QLineF l(xbrace1, y1, xbrace1, y2); if (l.length()>0) painter.drawLine(l); const QLineF l2(xbrace1+2.5*lw, y1, xbrace1+2.5*lw, y2); if (l2.length()>0) painter.drawLine(l2); painter.setPen(p); } else { showOpeningBrace=false; } if (showOpeningBrace) { xnew=xnew+bracewidth; } } painter.setPen(pold); xnew= getChild()->draw(painter, xnew, y, currentEv); { bool showClosingBrace=true; const double xbrace1=qMax(xnew+bracewidth-paren_fraction*bracewidth, xnew+lw/2.0); const double xbrace1s=qMax(xnew+bracewidth-brace_fraction*bracewidth, xnew+lw/2.0); const double xbrace2=xnew+bracewidth-lw; painter.setPen(p); if (closebrace==MTBTParenthesis) { QPainterPath path; const double y1=y+(nodeOverallHeight-nodeBaselineHeight); const double y2=y-nodeBaselineHeight; const QPointF pb1(xbrace1-paren_topwidth/2.0, y1); const QPointF pbc1(xbrace2-paren_centerwidth/2.0, (y1+y2)/2.0+fabs(y1-y2)/6.0); const QPointF ptc1(xbrace2-paren_centerwidth/2.0, (y1+y2)/2.0-fabs(y1-y2)/6.0); const QPointF pt1(xbrace1-paren_topwidth/2.0, y2); const QPointF pt2(xbrace1+paren_topwidth/2.0, y2); const QPointF ptc2(xbrace2+paren_centerwidth/2.0, (y1+y2)/2.0-fabs(y1-y2)/6.0); const QPointF pbc2(xbrace2+paren_centerwidth/2.0, (y1+y2)/2.0+fabs(y1-y2)/6.0); const QPointF pb2(xbrace1+paren_topwidth/2.0, y1); path.moveTo(pb1); path.cubicTo(pbc1, ptc1, pt1); path.lineTo(pt2); path.cubicTo(ptc2, pbc2, pb2); path.closeSubpath(); painter.fillPath(path, QBrush(ev.color, Qt::SolidPattern)); /*painter.setPen("blue"); painter.drawLine(pb1,pbc1); painter.drawLine(pt1,ptc1); painter.drawLine(pb2,pbc2); painter.drawLine(pt2,ptc2);*/ } else if (closebrace==MTBTAngleBracket) { QPainterPath path; const double y1=y+(nodeOverallHeight-nodeBaselineHeight); const double y2=y-nodeBaselineHeight; const double yc=(y1+y2)/2.0; const QPointF pb1(xbrace1-paren_topwidth/2.0, y1); const QPointF pc1(xbrace2-paren_centerwidth/2.0, yc); const QPointF pt1(xbrace1-paren_topwidth/2.0, y2); const QPointF pt2(xbrace1+paren_topwidth/2.0, y2); const QPointF pc2(xbrace2+paren_centerwidth/2.0, yc); const QPointF pb2(xbrace1+paren_topwidth/2.0, y1); path.moveTo(pb1); path.lineTo(pc1); path.lineTo(pt1); path.lineTo(pt2); path.lineTo(pc2); path.lineTo(pb2); path.closeSubpath(); painter.fillPath(path, QBrush(ev.color, Qt::SolidPattern)); } else if (closebrace==MTBTSquareBracket) { QPainterPath path; const double y1=y+(nodeOverallHeight-nodeBaselineHeight)-lw/2.0; const double y2=y-nodeBaselineHeight+lw/2.0; path.moveTo(xbrace1s, y1); path.lineTo(xbrace2, y1); path.lineTo(xbrace2, y2); path.lineTo(xbrace1s, y2); painter.drawPath(path); } else if (closebrace==MTBTBottomCorner) { QPainterPath path; const double dx=fabs(xbrace1s-xbrace2); const double y1=y+(nodeOverallHeight-nodeBaselineHeight)-lw/2.0; path.moveTo(xbrace1s, y1); path.lineTo(xbrace2, y1); path.lineTo(xbrace2, y1-dx); painter.drawPath(path); } else if (closebrace==MTBTTopCorner) { QPainterPath path; const double dx=fabs(xbrace1s-xbrace2); const double y1=y-nodeBaselineHeight+lw/2.0; path.moveTo(xbrace1s, y1); path.lineTo(xbrace2, y1); path.lineTo(xbrace2, y1+dx); painter.drawPath(path); } else if (closebrace==MTBTCurlyBracket) { const QPainterPath path=JKQTMathTextMakeHBracePath(0,0,nodeOverallHeight, bracewidth*brace_fraction, p.widthF()); painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();}); painter.translate((xbrace1+xbrace2)/2.0, y-nodeBaselineHeight+nodeOverallHeight/2.0); painter.rotate(270); QPen plocal=p; plocal.setWidthF(0.0001); painter.fillPath(path, QBrush(ev.color)); /*QRectF r(0,0,nodeOverallHeight, bracewidth*brace_fraction); r.moveCenter(QPointF(0,0)); painter.setPen("blue"); painter.drawRect(r); painter.setPen("darkgreen"); painter.drawPath(path);*/ } else if (closebrace==MTBTFloorBracket) { QPainterPath path; const double y1=y+(nodeOverallHeight-nodeBaselineHeight)-lw/2.0; const double y2=y-nodeBaselineHeight; path.moveTo(xbrace1s, y1); path.lineTo(xbrace2, y1); path.lineTo(xbrace2, y2); painter.drawPath(path); } else if (closebrace==MTBTCeilBracket) { QPainterPath path; const double y1=y+(nodeOverallHeight-nodeBaselineHeight); const double y2=y-nodeBaselineHeight+lw/2.0; path.moveTo(xbrace2, y1); path.lineTo(xbrace2, y2); path.lineTo(xbrace1s, y2); painter.drawPath(path); } else if (closebrace==MTBTSingleLine) { const double y1=y+(nodeOverallHeight-nodeBaselineHeight); const double y2=y-nodeBaselineHeight; const QLineF l(xbrace2, y1, xbrace2, y2); QPen plocal=p; plocal.setWidthF(plocal.widthF()*absnorm_linewidth_factor); painter.setPen(plocal); if (l.length()>0) painter.drawLine(l); painter.setPen(p); } else if (closebrace==MTBTDoubleLine) { const double y1=y+(nodeOverallHeight-nodeBaselineHeight); const double y2=y-nodeBaselineHeight; const QLineF l(xbrace2, y1, xbrace2, y2); QPen plocal=p; plocal.setWidthF(plocal.widthF()*absnorm_linewidth_factor); painter.setPen(plocal); if (l.length()>0) painter.drawLine(l); const QLineF l2(xbrace2-2.5*lw, y1, xbrace2-2.5*lw, y2); if (l2.length()>0) painter.drawLine(l2); painter.setPen(p); } else { showClosingBrace=false; } painter.setPen(pold); if (showClosingBrace) { xnew=xnew+bracewidth; } } //qDebug()<<" ==> "<toHtml(html, currentEv, defaultEv); html=html+cb; return ok; } QString JKQTMathTextBraceNode::getTypeName() const { return QLatin1String("MTbraceNode(")+JKQTMathTextBraceType2String(openbrace)+" "+JKQTMathTextBraceType2String(closebrace)+")"; } JKQTMathTextBraceType JKQTMathTextBraceNode::getOpenbrace() const { return this->openbrace; } JKQTMathTextBraceType JKQTMathTextBraceNode::getClosebrace() const { return this->closebrace; } void JKQTMathTextBraceNode::getBraceSize(QPainter &/*painter*/, JKQTMathTextEnvironment ev, double /*baselineHeight*/, double overallHeight, double &bracewidth, double &braceheight) const { const QFontMetricsF fm(ev.getFont(parentMathText)); const double lw=qMax(0.25,fm.lineWidth()); braceheight=overallHeight*parentMathText->getBraceFactor(); bracewidth=0.6*pow(braceheight, 0.6); if (openbrace==MTBTCurlyBracket || closebrace==MTBTCurlyBracket) bracewidth=qMax(bracewidth, lw*3.5); }