2015-07-11 18:56:02 +08:00
/*
2022-06-08 21:38:26 +08:00
Copyright ( c ) 2008 - 2022 Jan W . Krieger ( < jan @ jkrieger . de > )
2018-12-14 05:33:42 +08:00
with contributions from : Razi Alavizadeh
2015-07-11 18:56:02 +08:00
2015-07-12 22:34:27 +08:00
2015-07-11 18:56:02 +08:00
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
2019-02-08 00:24:46 +08:00
the Free Software Foundation , either version 2.1 of the License , or
2015-07-11 18:56:02 +08:00
( 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/>.
*/
# ifndef JKQTMATHTEXT_H
# define JKQTMATHTEXT_H
# include <QObject>
# include <QSettings>
# include <QPainter>
# include <QString>
# include <QSet>
# include <QFile>
2019-06-22 20:21:32 +08:00
# include "jkqtmathtext/jkqtmathtext_imexport.h"
2022-06-08 21:38:26 +08:00
# include "jkqtmathtext/jkqtmathtexttools.h"
2015-07-11 18:56:02 +08:00
# include <QWidget>
# include <QLabel>
# include <QHash>
2022-08-08 04:59:32 +08:00
# include <QPicture>
# include <QImage>
# include <QPixmap>
2015-07-11 18:56:02 +08:00
2018-12-03 01:30:12 +08:00
2022-06-08 21:38:26 +08:00
class JKQTMathTextNode ; // forward
2022-06-03 03:02:23 +08:00
2019-01-26 20:00:40 +08:00
/*! \brief this class parses a LaTeX string and can then draw the contained text/equation onto a <a href="http://doc.qt.io/qt-5/qpainter.html">QPainter</a>
2022-06-20 04:36:38 +08:00
\ ingroup jkqtmathtext_render
2015-07-11 18:56:02 +08:00
2019-01-19 16:40:52 +08:00
2019-01-20 17:49:29 +08:00
JKQTMathText is a self - contained LaTeX - renderer for Qt . It is used to renderer
2019-01-20 23:15:10 +08:00
labels in JKQTPlotter / JKQTBasePlotter , but can be used independently .
2019-01-19 23:54:31 +08:00
The class does not depend on any library , except Qt .
In particular it actually parses a LaTeX string and draws it in pure C + + . It does NOT rely
on an installed LaTeX for the rendering !
2022-08-02 18:16:10 +08:00
\ see See \ ref jkqtmathtext_supportedlatex for a description of the supported LaTeX subset
and \ ref jkqtmathtext_renderingmodel for a description of the rendering model .
2019-01-19 23:54:31 +08:00
2022-08-07 23:57:52 +08:00
2019-01-20 17:49:29 +08:00
\ section JKQTMathTextUsage Usage
2022-08-07 23:57:52 +08:00
\ subsection JKQTMathTextUsageDirect Drawing Functions
The class provides different variants of the drawing function draw ( ) that paints using an
externlly provided < a href = " https://doc.qt.io/qt-6/qpainter.html " > QPainter < / a > . These variants
either paint into a QRect , or starting from a single location ( x , y ) .
The QRect - variants can align the render result inside the rectangle , whereas the
location - variants draw from a position that is on the left - hand side of the output ' s baseline :
\ image html jkqtmathtext / jkqtmathtext_node_geo . png
\ subsection JKQTMathTextUsageConvenience Convenience Functions
Alternatively you can use these methods to directly generate a QPixmap or QPicture :
- drawIntoPixmap ( )
- drawIntoImage ( )
- drawIntoPicture ( )
.
\ subsection JKQTMathTextSizing Determining the size of an equation
In addition there are also functions that allow to calculate the size of the equation ,
before drawing it ( just like the functions in < a href = " http://doc.qt.io/qt-6/qfontmetrics.html " > QFontMetrics < / a >
or < a href = " http://doc.qt.io/qt-6/qfontmetricsf.html " > QFontMetricsF < / a > ) :
- getSizeDetail ( )
- getSize ( )
- getAscent ( ) , getDescent ( )
.
\ subsection JKQTMathTextUsageQLabel Usage within a QLabel class JKQTMathTextLabel
Finally , there is also a QLabel - derived class JKQTMathTextLabel which can be used for drawing a LaTeX string onto a Qt form .
\ see JKQTMathTextLabel
\ subsection JKQTMathTextErrorHandling Error Handling
The class is designed to be as robust as possible and will still return some output , even if the equation contains some errors .
Nevertheless , several errors are detected while parsing . You can get a list of error messages using getErrorList ( ) after calling parse ( ) .
Also parse ( ) will return \ c false if an error occured while parsing .
\ subsection JKQTMathTextUsageExample Example Code
2019-01-19 23:54:31 +08:00
This small piece of C + + code may serve as an example of the usage and capabilities of the class :
2019-01-19 16:40:52 +08:00
\ code
2019-01-20 17:49:29 +08:00
// create a JKQTMathText object.
JKQTMathText mathText ;
2019-01-19 16:40:52 +08:00
// configure its properties to influence the rendering (e.g. fonts to use, font size, ...)
mathText . useXITS ( ) ;
2019-01-26 03:16:04 +08:00
mathText . setFontSize ( 20 ) ;
2019-01-19 16:40:52 +08:00
// parse some LaTeX code (the Schroedinger's equation)
mathText . parse ( " $ \\ left[- \\ frac{ \\ hbar^2}{2m} \\ frac{ \\ partial^2}{ \\ partial x^2}+V(x) \\ right] \\ Psi(x)= \\ mathrm{i} \\ hbar \\ frac{ \\ partial}{ \\ partial t} \\ Psi(x)$ " ) ;
2022-08-07 23:57:52 +08:00
// draw the result into a QPixmap
QPixmap result = mathText . drawIntoPixmap ( ) ;
\ endcode
Alternatively you can also use this class with a < a href = " https://doc.qt.io/qt-6/qpainter.html " > QPainter < / a > :
\ code
2019-01-19 16:40:52 +08:00
// use the draw() methods to draw the equation using a QPainter (here onto a QPixmap)
QPainter painter ;
2022-08-07 23:57:52 +08:00
// first we determine the size of the render output:
const JKQTMathTextNodeSize size = getSizeDetail ( painter ) ;
// now we can us that size information to render:
2019-01-19 16:40:52 +08:00
mathText . draw ( painter , Qt : : AlignCenter , QRectF ( 0 , 0 , pix . width ( ) , pix . height ( ) ) , false ) ;
\ endcode
2019-01-19 23:54:31 +08:00
2022-08-07 23:57:52 +08:00
\ section JKQTMathTextToHTML Convert to HTML
The method toHtml ( ) may be used to get a HTML representation of the LaTeX string , if possible ( only for simple LaTeX equations ! ) . Whether
the transformation was possible is returned as a call by value argument !
2019-01-19 23:54:31 +08:00
2022-08-07 23:57:52 +08:00
\ section JKQTMathTextExamples Example Projects
2019-01-19 23:54:31 +08:00
Examples for the usage of this class can be found here :
2022-08-02 18:16:10 +08:00
- \ ref JKQTMathTextSimpleExample
2022-08-07 23:57:52 +08:00
- \ ref JKQTMathTextRenderCmdLineTool
2022-08-02 18:16:10 +08:00
- \ ref JKQTMathTextTestApp
2015-07-11 18:56:02 +08:00
.
2022-07-31 13:56:13 +08:00
2022-08-07 23:57:52 +08:00
\ section JKQTMathTextInternalDetails Implementation Details
\ subsection JKQTMathTextSuppoertedFonts Font Handling
2015-07-11 18:56:02 +08:00
Several fonts are defined as properties to the class :
2022-07-04 02:30:12 +08:00
- A " roman " ( MTEroman / MTEmathRoman ) font used as the standard font ( setFontRoman ( ) and for use in math mode setFontMathRoman ( ) )
- A " sans-serif " ( MTEsans / MTEmathSans ) font which may be activated with \ c \ \ sf . . . ( setFontSans ( ) and for use in math mode setFontMathSans ( ) )
- A " typewriter " ( MTEtypewriter ) font which may be activated with \ c \ \ tt . . . ( setFontTypewriter ( ) )
- A " script " ( MTEscript ) font which may be activated with \ c \ \ script . . . ( setFontScript ( ) )
- A " math-roman " ( MTEmathRoman ) font used as the standard font in math mode ( setFontMathRoman ( ) )
- A " math-sans-serif " ( MTEmathSans ) used as sans serif font in math mode ( setFontMathSans ( ) )
- A " blackboard " ( MTEblackboard ) font used to display double stroked characters ( setFontBlackboard ( ) )
- A " caligraphic " ( MTEcaligraphic ) font used to display caligraphic characters ( setFontCaligraphic ( ) )
- A " fraktur " ( MTEfraktur ) font used to display fraktur characters ( setFontFraktur ( ) )
2022-07-06 04:03:08 +08:00
- A fallback font MTEFallbackSymbols for ( math ) symbols , greek letters . . . ( if the symbols are not present in the currently used font ) . ( setFallbackFontSymbols ( ) )
2015-07-11 18:56:02 +08:00
.
2022-07-04 02:30:12 +08:00
2019-01-26 20:00:40 +08:00
These fonts are generic font classes , which font is actually used can be configured in JKQTMathText class with the \ c set . . . ( ) functions mentioned above . You can also use these functions to set the fonts used for math rendering in math - mode :
2022-07-24 20:50:28 +08:00
- useSTIX ( ) use the STIX fonts from < a href = " https://www.stixfonts.org/ " > https : //www.stixfonts.org/</a> in math-mode<br>\image html jkqtmathtext/jkqtmathtext_stix.png
- useXITS ( ) use the XITS fonts from < a href = " https://github.com/alif-type/xits " > https : //github.com/alif-type/xits</a> in math-mode. These are included by default in this library and also activated by default.<br>\image html jkqtmathtext/jkqtmathtext_xits.png
- useASANA ( ) use the ASANA fonts from < a href = " https://ctan.org/tex-archive/fonts/Asana-Math/ " > https : //ctan.org/tex-archive/fonts/Asana-Math/</a> in math-mode<br>\image html jkqtmathtext/jkqtmathtext_asana.png
- useAnyUnicode ( ) use generic Unicode fonts , e . g . " Arial " and " Times New Roman " in math - mode . You should use fonts that contain as many of the mathematical symbols as possible to ensure good rendering results . < br > using " Times New Roman " : \ image html jkqtmathtext / jkqtmathtext_timesnewroman . png
< br > using " Arial " : \ image html jkqtmathtext / jkqtmathtext_arial . png
< br > using " Courier New " : \ image html jkqtmathtext / jkqtmathtext_couriernew . png
< br > using " Comic Sans MS " : \ image html jkqtmathtext / jkqtmathtext_comicsans . png
< br > using " Old English Text " : \ image html jkqtmathtext / jkqtmathtext_OldEnglish . png
2022-08-08 04:13:31 +08:00
< br > using " Computer Modern " : \ image html jkqtmathtext / jkqtmathtext_computermodern . png
< br > using " Fira " : \ image html jkqtmathtext / jkqtmathtext_fira . png
< br > using " MS Segoe UI " : \ image html jkqtmathtext / jkqtmathtext_mssegoeui . png
2022-08-10 20:41:26 +08:00
< br > using " DejaVu Sans " : \ image html jkqtmathtext / jkqtmathtext_DejaVuSans . png
< br > using " DejaVu Serif " : \ image html jkqtmathtext / jkqtmathtext_DejaVuSerif . png
2019-01-19 23:24:19 +08:00
.
2019-01-19 16:40:52 +08:00
2019-01-19 23:54:31 +08:00
Math - mode is activated by enclosing your equation in \ c $ . . . $ or \ c \ \ [ . . . \ \ ] . This mode is optimized for mathematical equations . Here is an example of the difference :
2022-07-04 02:30:12 +08:00
- < b > math - mode ( MTEmathRoman and MTEmathSans , whitespaces are mostly not drawn directly , symbol spacing is different ) < / b > \ c $ . . . $ : < br > \ image html jkqtmathtext / schreq_mathmode . png
- < b > normal mode ( MTEroman and MTEsans is used , whitespaces are evaluated directly ) < / b > : < br > \ image html jkqtmathtext / schreq_normalmode . png
2019-01-19 23:54:31 +08:00
.
2022-07-04 02:30:12 +08:00
Font Lookup for symbols works as follows in JKQTMathTextSymbolNode :
- if a character is found in the current ( or to be used ) font , it is taken from there
2022-07-06 04:03:08 +08:00
- if the character is not found , it is looked for in the fallback fonts MTEFallbackSymbols
2022-07-04 02:30:12 +08:00
- as a last resort , some symbols can be created otherwise , so if neither of the two options above
contain the required symbol , the symbol might be synthesized otherwise , or a rectangle with the size of " X " is drawn instead
2022-08-07 23:57:52 +08:00
.
2015-07-11 18:56:02 +08:00
*/
2019-06-22 20:21:32 +08:00
class JKQTMATHTEXT_LIB_EXPORT JKQTMathText : public QObject {
2015-07-11 18:56:02 +08:00
Q_OBJECT
public :
2019-02-08 00:24:46 +08:00
/** \brief minimum linewidth allowed in a JKQTMathText (given in pt) */
static const double ABS_MIN_LINEWIDTH ;
2022-06-03 03:02:23 +08:00
2015-07-11 18:56:02 +08:00
/** \brief class constructor */
2019-01-20 17:49:29 +08:00
JKQTMathText ( QObject * parent = nullptr ) ;
2015-07-11 18:56:02 +08:00
/** \brief class destructor */
2019-01-20 17:49:29 +08:00
~ JKQTMathText ( ) ;
2015-07-11 18:56:02 +08:00
/** \brief load the object settings from the given QSettings object with the given name prefix */
2019-02-08 00:24:46 +08:00
void loadSettings ( const QSettings & settings , const QString & group = QString ( " mathtext/ " ) ) ;
2015-07-11 18:56:02 +08:00
/** \brief store the object settings to the given QSettings object with the given name prefix */
2019-02-08 00:24:46 +08:00
void saveSettings ( QSettings & settings , const QString & group = QString ( " mathtext/ " ) ) const ;
2022-06-03 05:24:41 +08:00
/** \brief parse the given enhanced string. If \c addSpaceBeforeAndAfter==true a little bit of space is added before and after the text. Returns \c true on success. */
bool parse ( const QString & text , bool addSpaceBeforeAndAfter = false ) ;
2015-07-11 18:56:02 +08:00
/** \brief get the size of the drawn representation. returns an invalid size if no text has been parsed. */
QSizeF getSize ( QPainter & painter ) ;
/** \brief return the descent, i.e. the distance from the baseline to the lowest part of the representation */
double getDescent ( QPainter & painter ) ;
/** \brief return the ascentt, i.e. the distance from the baseline to the highest part of the representation */
double getAscent ( QPainter & painter ) ;
/** \brief return the detailes sizes of the text */
void getSizeDetail ( QPainter & painter , double & width , double & ascent , double & descent , double & strikeoutPos ) ;
2022-08-07 23:57:52 +08:00
/** \brief return the detailes sizes of the text */
JKQTMathTextNodeSize getSizeDetail ( QPainter & painter ) ;
2022-07-04 03:30:12 +08:00
/** \brief draw a representation to the object at the specified position \a x , \a y
*
* \ param painter the < a href = " http://doc.qt.io/qt-5/qpainter.html " > QPainter < / a > to use for drawing
* \ param x position of the left border of the text / expression to be drawn ( see sketch below )
* \ param drawBoxes if \ c true boxes defining the size of each node are drawn , example output : \ image html jkqtmathtext / jkqtmathtext_drawboxes . png
*
* Here is an illustration of the geometry of the drawn text / expression :
* \ image html jkqtmathtext / jkqtmathtext_node_geo . png
*/
void draw ( QPainter & painter , QPointF x , bool drawBoxes = false ) ;
/** \brief draw a representation to the object at the specified position \a x , \a y
*
* \ param painter the < a href = " http://doc.qt.io/qt-5/qpainter.html " > QPainter < / a > to use for drawing
* \ param x x - position of the left border of the text / expression to be drawn ( see sketch below )
* \ param y y - position of the baseline of the text / expression to be drawn ( see sketch below )
* \ param drawBoxes if \ c true boxes defining the size of each node are drawn , example output : \ image html jkqtmathtext / jkqtmathtext_drawboxes . png
*
* Here is an illustration of the geometry of the drawn text / expression :
* \ image html jkqtmathtext / jkqtmathtext_node_geo . png
*/
2022-08-08 16:12:59 +08:00
double draw ( QPainter & painter , double x , double y , bool drawBoxes = false ) ;
2022-07-04 03:30:12 +08:00
/** \brief draw into a rectangle \a rect with alignment defined in \a flags (see below)
*
* \ param painter the < a href = " http://doc.qt.io/qt-5/qpainter.html " > QPainter < / a > to use for drawing
* \ param rect rectangle to draw the text / expression into ( see sketch below )
2022-07-24 20:50:28 +08:00
* \ param flags alignment within \ a rect ( see below ) , use e . g . < tt > Qt : : AlignHCenter | Qt : : AlignVCenter < / tt > to center the expression inside \ a rect
2022-08-07 23:57:52 +08:00
* The flags ( dark - red is the rectangle \ a rect ) are interpreted in the following way :
* \ image html jkqtmathtext / jkqtmathtext_draw_flags . png
2022-07-04 03:30:12 +08:00
* \ param drawBoxes if \ c true boxes defining the size of each node are drawn , example output : \ image html jkqtmathtext / jkqtmathtext_drawboxes . png
2015-07-11 18:56:02 +08:00
*
2022-08-07 23:57:52 +08:00
*
*
* \ see drawIntoPixmap ( ) , drawIntoPicture ( ) , getSize ( ) , getSizeDetail ( )
2015-07-11 18:56:02 +08:00
*/
2019-05-01 20:58:19 +08:00
void draw ( QPainter & painter , unsigned int flags , QRectF rect , bool drawBoxes = false ) ;
2015-07-11 18:56:02 +08:00
2022-08-07 23:57:52 +08:00
/** \brief render the last parse result into a <a href="https://doc.qt.io/qt-6/qpixmap.html">QPixmap</a>
*
* \ param drawBoxes if \ c true boxes defining the size of each node are drawn , example output : \ image html jkqtmathtext / jkqtmathtext_drawboxes . png
* \ param backgroundColor fill color for the returnes QPixmap
* \ param sizeincrease margin around the tight size of the rendering result for the returned QPixmap
* \ param devicePixelRatio the devicePixelRatio of the returned QPixmap
*/
QPixmap drawIntoPixmap ( bool drawBoxes = false , QColor backgroundColor = QColor ( Qt : : white ) , int sizeincrease = 0 , qreal devicePixelRatio = 1.0 ) ;
/** \brief render the last parse result into a <a href="https://doc.qt.io/qt-6/qimage.html">QImage</a>
*
* \ param drawBoxes if \ c true boxes defining the size of each node are drawn , example output : \ image html jkqtmathtext / jkqtmathtext_drawboxes . png
* \ param backgroundColor fill color for the returnes QPixmap
* \ param sizeincrease margin around the tight size of the rendering result for the returned QPixmap
* \ param devicePixelRatio the devicePixelRatio of the returned QImage
* \ param resolution_dpi resolution in dots / inch
*/
QImage drawIntoImage ( bool drawBoxes = false , QColor backgroundColor = QColor ( Qt : : white ) , int sizeincrease = 0 , qreal devicePixelRatio = 1.0 , unsigned int resolution_dpi = 96 ) ;
/** \brief render the last parse result into a <a href="https://doc.qt.io/qt-6/qpicture.html">QPicture</a>
*
* \ param drawBoxes if \ c true boxes defining the size of each node are drawn , example output : \ image html jkqtmathtext / jkqtmathtext_drawboxes . png
*/
QPicture drawIntoPicture ( bool drawBoxes = false ) ;
2019-06-30 23:34:41 +08:00
/** \brief convert LaTeX to HTML. returns \c ok=true on success and \c ok=false else. */
QString toHtml ( bool * ok = nullptr , double fontPointSize = 10 ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc fontColor */
2019-06-30 23:34:41 +08:00
void setFontColor ( const QColor & __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc fontColor */
2019-06-30 23:34:41 +08:00
QColor getFontColor ( ) const ;
2022-07-05 03:02:43 +08:00
/** \copydoc setFontPointSize() */
2019-06-30 23:34:41 +08:00
void setFontSize ( double __value ) ;
2022-07-05 03:02:43 +08:00
/** \brief set the default font size in points
* \ see getFontSize ( ) , fontSize , fontSizeUnits */
void setFontPointSize ( double __value ) ;
/** \brief set the default font soze in pixels
* \ see getFontSizePixels ( ) , fontSize , fontSizeUnits */
void setFontSizePixels ( double __value ) ;
/** \brief returns the currently set default font size in points, if it was defined in points using setFontSize(), or -1 if it was set in pixels with setFontSizePixels()
* \ see setFontSize ( ) , fontSize , fontSizeUnits */
double getFontPointSize ( ) const ;
/** \copydoc getFontPointSize() */
2019-06-30 23:34:41 +08:00
double getFontSize ( ) const ;
2022-07-05 03:02:43 +08:00
/** \brief returns the currently set default font size in pixels, if it was defined in points using setFontSizePixels(), or -1 if it was set in points with setFontSize()
* \ see setFontSizePixels ( ) , fontSize , fontSizeUnits */
double getFontSizePixels ( ) const ;
2019-06-30 23:34:41 +08:00
/** \brief add a font pair to the table with font replacements
*
* e . g . if it is known that a certain font is not good for rendering , you can add an alternative with this function .
* These are automatically applied , when setting a new font name !
*
* \ param nonUseFont the font not to use
* \ param useFont replacement font for nonUseFont
*
* The entry in the encodings for this font is kept empty ( or even deleted ) , so the default encoding of the font to be replaced is used !
*/
void addReplacementFont ( const QString & nonUseFont , const QString & useFont ) ;
/** \brief add a font pair to the table with font replacements
*
* e . g . if it is known that a certain font is not good for rendering , you can add an alternative with this function .
* These are automatically applied , when setting a new font name !
*
* \ param nonUseFont the font not to use
* \ param useFont replacement font for nonUseFont
* \ param useFontEncoding encoding of the replacement font
*/
2022-06-08 21:38:26 +08:00
void addReplacementFont ( const QString & nonUseFont , const QString & useFont , JKQTMathTextFontEncoding useFontEncoding ) ;
2019-06-30 23:34:41 +08:00
/** \brief retrieves a replacement for the given font name \a nonUseFont, including its encoding. Returns the given default values \a defaultFont and/or \a defaultFontEncoding if one of the two is not found */
2022-06-08 21:38:26 +08:00
QPair < QString , JKQTMathTextFontEncoding > getReplacementFont ( const QString & nonUseFont , const QString & defaultFont , JKQTMathTextFontEncoding defaultFontEncoding ) const ;
2019-06-30 23:34:41 +08:00
/** \brief retrieve the font and encoding to be used for \a font, which might optionally be typeset inside a math environment, specified by in_math_environment, possibly for the given font subclass \a subclass */
2022-07-04 02:30:12 +08:00
QPair < QString , JKQTMathTextFontEncoding > getFontData ( JKQTMathTextEnvironmentFont font , bool in_math_environment = false ) const ;
2019-06-30 23:34:41 +08:00
/*! \brief calls setFontRoman(), or calls useXITS() if \a __value \c =="XITS". calls useSTIX() if \a __value \c =="STIX", ...
\ see setFontRoman ( ) , useXITS ( ) , useSTIX ( ) for more information */
2022-06-08 21:38:26 +08:00
void setFontRomanOrSpecial ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2022-06-03 03:02:23 +08:00
/*! \brief calls setFontRoman(), or calls useXITS() if \a __value \c =="XITS". calls useSTIX() if \a __value \c =="STIX", ...
\ see setFontRoman ( ) , useXITS ( ) , useSTIX ( ) for more information */
2022-06-08 21:38:26 +08:00
void setFontRomanOrSpecial ( const JKQTMathTextFontSpecifier & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2019-06-30 23:34:41 +08:00
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEroman */
2022-06-08 21:38:26 +08:00
void setFontRoman ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for text in the logical font MTEroman */
2019-06-30 23:34:41 +08:00
QString getFontRoman ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEsans */
2022-06-08 21:38:26 +08:00
void setFontSans ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for text in the logical font MTEsans */
2019-06-30 23:34:41 +08:00
QString getFontSans ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEtypewriter */
2022-06-08 21:38:26 +08:00
void setFontTypewriter ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for text in the logical font MTEtypewriter */
2019-06-30 23:34:41 +08:00
QString getFontTypewriter ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEscript */
2022-06-08 21:38:26 +08:00
void setFontScript ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for text in the logical font MTEscript */
2019-06-30 23:34:41 +08:00
QString getFontScript ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEfraktur */
2022-06-08 21:38:26 +08:00
void setFontFraktur ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for text in the logical font MTEfraktur */
2019-06-30 23:34:41 +08:00
QString getFontFraktur ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEcaligraphic */
2022-06-08 21:38:26 +08:00
void setFontCaligraphic ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for text in the logical font MTEcaligraphic */
2019-06-30 23:34:41 +08:00
QString getFontCaligraphic ( ) const ;
2022-08-11 01:21:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEblackboard \see setFontBlackboardMode()
2022-08-08 04:13:31 +08:00
*
*
*/
2022-06-08 21:38:26 +08:00
void setFontBlackboard ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2022-08-10 18:12:30 +08:00
/** \copydoc blackboradFontMode */
JKQTMathTextBlackboradDrawingMode getFontBlackboradMode ( ) const ;
/** \copydoc blackboradFontMode */
void setFontBlackboradMode ( JKQTMathTextBlackboradDrawingMode mode ) ;
/** \brief retrieves the font to be used for text in the logical font MTEblackboard \see blackboradFontMode */
2019-06-30 23:34:41 +08:00
QString getFontBlackboard ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for symbols in the logical font \a font */
2022-07-04 02:30:12 +08:00
void setFallbackFontSymbols ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for symbols in the logical font \a font */
2022-07-04 02:30:12 +08:00
QString getFallbackFontSymbols ( ) const ;
2019-06-30 23:34:41 +08:00
2022-07-04 02:30:12 +08:00
/** \brief retrieves the encoding used for the symbol font to be used for symbols */
JKQTMathTextFontEncoding getFontEncodingFallbackFontSymbols ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the script font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingScript ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the Fraktur font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingFraktur ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the typewriter font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingTypewriter ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the sans-serif font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingSans ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the roman font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingRoman ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the blackboard font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingBlackboard ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the caligraphic font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingCaligraphic ( ) const ;
2019-06-30 23:34:41 +08:00
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEmathRoman */
2022-06-08 21:38:26 +08:00
void setFontMathRoman ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for text in the logical font MTEroman */
2019-06-30 23:34:41 +08:00
QString getFontMathRoman ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief set the font \a fontName and it's encoding \a encoding to be used for text in the logical font MTEmathSans */
2022-06-08 21:38:26 +08:00
void setFontMathSans ( const QString & fontName , JKQTMathTextFontEncoding encoding = JKQTMathTextFontEncoding : : MTFEStandard ) ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the font to be used for text in the logical font MTEsans */
2019-06-30 23:34:41 +08:00
QString getFontMathSans ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the math-mode sans-serif font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingMathSans ( ) const ;
2020-09-21 19:47:54 +08:00
/** \brief retrieves the encoding used for the math-mode roman font */
2022-06-08 21:38:26 +08:00
JKQTMathTextFontEncoding getFontEncodingMathRoman ( ) const ;
2019-06-30 23:34:41 +08:00
2019-01-19 16:40:52 +08:00
/** \brief configures the class to use the STIX fonts in mathmode
*
* use STIX ( 1. x / 2. x ) fonts from < a href = " https://www.stixfonts.org/ " > https : //www.stixfonts.org/</a> in math-mode
*
2022-07-24 20:50:28 +08:00
* \ image html jkqtmathtext / jkqtmathtext_stix . png
2019-01-19 16:40:52 +08:00
*/
2019-06-30 23:34:41 +08:00
bool useSTIX ( bool mathModeOnly = true ) ;
2015-07-11 18:56:02 +08:00
2019-01-19 16:40:52 +08:00
/** \brief configures the class to use the XITS fonts in mathmode
*
* use XITS fonts from < a href = " https://github.com/alif-type/xits " > https : //github.com/alif-type/xits</a> in math-mode.
* These are included by default in this library and also activated by default .
*
2022-07-24 20:50:28 +08:00
* \ image html jkqtmathtext / jkqtmathtext_xits . png
2020-06-28 15:49:20 +08:00
*
* \ note The XITS fonts can be compiled into JKQTPlotter , when the CMake - option \ c is set to ON ( default : ON ) .
* Then the XITS fonts are added as Qt - Ressources to the library binary .
* If this is not the case , you have to provide the XITS fonts on the target system by other means , if you want
* to use them .
2019-01-19 16:40:52 +08:00
*/
2019-06-30 23:34:41 +08:00
bool useXITS ( bool mathModeOnly = true ) ;
2015-07-11 18:56:02 +08:00
2019-01-19 16:40:52 +08:00
/** \brief configures the class to use the ASANA fonts in mathmode
*
* use the ASANA fonts from < a href = " https://ctan.org/tex-archive/fonts/Asana-Math/ " > https : //ctan.org/tex-archive/fonts/Asana-Math/</a> in math-mode
*
2022-07-24 20:50:28 +08:00
* \ image html jkqtmathtext / jkqtmathtext_asana . png
2019-01-19 16:40:52 +08:00
*/
2019-06-30 23:34:41 +08:00
bool useASANA ( bool mathModeOnly = true ) ;
2015-07-11 18:56:02 +08:00
2019-06-30 23:34:41 +08:00
/** \brief sets \a timesFont (with its encoding \a encodingTimes ) for serif-text and \a sansFont (with its encoding \a encodingSans ) for both mathmode and textmode fonts
2019-01-19 16:40:52 +08:00
*
2022-07-05 03:02:43 +08:00
* \ note use generic Unicode fonts , e . g . " Arial " and " Times New Roman " in math - mode .
* You should use fonts that contain as many of the mathematical symbols as possible
* to ensure good rendering results .
2019-01-19 16:40:52 +08:00
*
2022-07-24 20:50:28 +08:00
* < code > useAnyUnicode ( " Times New Roman " , " Times New Roman " ) < / code > : < br > \ image html jkqtmathtext / jkqtmathtext_timesnewroman . png < br > < br >
* < code > useAnyUnicode ( " Arial " , " Arial " ) < / code > : < br > \ image html jkqtmathtext / jkqtmathtext_arial . png < br > < br >
* < code > useAnyUnicode ( " Courier New " , " Courier New " ) < / code > : < br > \ image html jkqtmathtext / jkqtmathtext_couriernew . png < br > < br >
* < code > useAnyUnicode ( " Comic Sans MS " , " Comic Sans MS " ) < / code > : < br > \ image html jkqtmathtext / jkqtmathtext_comicsans . png < br > < br >
* < code > useAnyUnicodeForTextOnly ( " Comic Sans MS " , " Comic Sans MS " ) ; < / code > : < br / > \ image html jkqtmathtext / jkqtmathtext_comicsans_textonly . png
2019-01-19 16:40:52 +08:00
*/
2022-07-05 03:02:43 +08:00
void useAnyUnicode ( QString timesFont , const QString & sansFont , JKQTMathTextFontEncoding encodingTimes = JKQTMathTextFontEncoding : : MTFEUnicode , JKQTMathTextFontEncoding encodingSans = JKQTMathTextFontEncoding : : MTFEUnicode ) ;
/** \brief sets \a timesFont (with its encoding \a encodingTimes ) for serif-text and \a sansFont (with its encoding \a encodingSans ) for mathmode fonts only
*
* \ note use generic Unicode fonts , e . g . " Arial " and " Times New Roman " in math - mode .
* You should use fonts that contain as many of the mathematical symbols as possible to ensure good rendering results .
*
* \ see useAnyUnicodeForTextOnly ( ) , useAnyUnicode ( )
*/
void useAnyUnicodeForMathOnly ( QString timesFont , const QString & sansFont , JKQTMathTextFontEncoding encodingTimes = JKQTMathTextFontEncoding : : MTFEUnicode , JKQTMathTextFontEncoding encodingSans = JKQTMathTextFontEncoding : : MTFEUnicode ) ;
/** \brief sets \a timesFont (with its encoding \a encodingTimes ) for serif-text and \a sansFont (with its encoding \a encodingSans ) for both mathmode fonts only
*
* \ see useAnyUnicodeForMathOnly ( ) , useAnyUnicode ( )
2022-07-06 04:03:08 +08:00
*
2022-07-24 20:50:28 +08:00
* < code > useAnyUnicode ( " Comic Sans MS " , " Comic Sans MS " ) < / code > : < br > \ image html jkqtmathtext / jkqtmathtext_comicsans . png < br > < br >
* < code > useAnyUnicodeForTextOnly ( " Comic Sans MS " , " Comic Sans MS " ) ; < / code > : < br / > \ image html jkqtmathtext / jkqtmathtext_comicsans_textonly . png
2022-07-05 03:02:43 +08:00
*/
void useAnyUnicodeForTextOnly ( QString timesFont , const QString & sansFont , JKQTMathTextFontEncoding encodingTimes = JKQTMathTextFontEncoding : : MTFEUnicode , JKQTMathTextFontEncoding encodingSans = JKQTMathTextFontEncoding : : MTFEUnicode ) ;
2015-07-11 18:56:02 +08:00
2020-09-21 19:47:54 +08:00
/** \copydoc brace_factor */
2019-06-30 23:34:41 +08:00
void setBraceFactor ( double __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc brace_factor */
2019-06-30 23:34:41 +08:00
double getBraceFactor ( ) const ;
2022-06-26 06:28:49 +08:00
/** \copydoc subsuper_size_factor */
2019-06-30 23:34:41 +08:00
void setSubsuperSizeFactor ( double __value ) ;
2022-06-26 06:28:49 +08:00
/** \copydoc subsuper_size_factor */
2019-06-30 23:34:41 +08:00
double getSubsuperSizeFactor ( ) const ;
2022-06-26 06:28:49 +08:00
/** \copydoc subsuper_mode_selection_by_size_factor */
void setSubsuperModeSelectionBySizeFactor ( double __value ) ;
/** \copydoc subsuper_mode_selection_by_size_factor */
double getSubsuperModeSelectionBySizeFactor ( ) const ;
/** \copydoc italic_correction_factor */
2019-06-30 23:34:41 +08:00
void setItalicCorrectionFactor ( double __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc italic_correction_factor */
2019-06-30 23:34:41 +08:00
double getItalicCorrectionFactor ( ) const ;
2020-09-21 19:47:54 +08:00
/** \copydoc operatorsubsuper_size_factor */
2019-06-30 23:34:41 +08:00
void setOperatorsubsuperSizeFactor ( double __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc operatorsubsuper_size_factor */
2019-06-30 23:34:41 +08:00
double getOperatorsubsuperSizeFactor ( ) const ;
2022-06-26 06:28:49 +08:00
/** \copydoc operatorsubsuper_distance_factor */
void setOperatorsubsuperDistanceFactor ( double __value ) ;
/** \copydoc operatorsubsuper_distance_factor */
double getOperatorsubsuperDistanceFactor ( ) const ;
/** \copydoc operatorsubsuper_extraspace_factor */
void setOperatorsubsuperExtraSpaceFactor ( double __value ) ;
/** \copydoc operatorsubsuper_extraspace_factor */
double getOperatorsubsuperExtraSpaceFactor ( ) const ;
/** \copydoc mathoperator_width_factor */
2019-06-30 23:34:41 +08:00
void setMathoperatorWidthFactor ( double __value ) ;
2022-06-26 06:28:49 +08:00
/** \copydoc mathoperator_width_factor */
2019-06-30 23:34:41 +08:00
double getMathoperatorWidthFactor ( ) const ;
2022-06-28 04:57:49 +08:00
/** \copydoc intsubsuper_xcorrection_factor */
void setIntSubSuperXCorrectionFactor ( double __value ) ;
/** \copydoc intsubsuper_xcorrection_factor */
double getIntSubSuperXCorrectionFactor ( ) const ;
/** \copydoc intsubbesides_xcorrection_xfactor */
void setIntSubBesidesXCorrectionXFactor ( double __value ) ;
/** \copydoc intsubbesides_xcorrection_xfactor */
double getIntSubBesidesXCorrectionXFactor ( ) const ;
2022-06-26 06:28:49 +08:00
/** \copydoc bigmathoperator_font_factor */
void setBigMathoperatorFontFactor ( double __value ) ;
/** \copydoc bigmathoperator_font_factor */
double getBigMathoperatorFontFactor ( ) const ;
/** \copydoc super_shift_factor */
2019-06-30 23:34:41 +08:00
void setSuperShiftFactor ( double __value ) ;
2022-06-26 06:28:49 +08:00
/** \copydoc super_shift_factor */
2019-06-30 23:34:41 +08:00
double getSuperShiftFactor ( ) const ;
2022-06-26 06:28:49 +08:00
/** \copydoc sub_shift_factor */
2019-06-30 23:34:41 +08:00
void setSubShiftFactor ( double __value ) ;
2022-06-26 06:28:49 +08:00
/** \copydoc sub_shift_factor */
2019-06-30 23:34:41 +08:00
double getSubShiftFactor ( ) const ;
2022-06-26 06:28:49 +08:00
/** \copydoc special_super_shift_factor */
void setSpecialSuperShiftFactor ( double __value ) ;
/** \copydoc special_super_shift_factor */
double getSpecialSuperShiftFactor ( ) const ;
/** \copydoc special_sub_shift_factor */
void setSpecialSubShiftFactor ( double __value ) ;
/** \copydoc special_sub_shift_factor */
double getSpecialSubShiftFactor ( ) const ;
/** \copydoc brace_shrink_factor */
2019-06-30 23:34:41 +08:00
void setBraceShrinkFactor ( double __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc brace_shrink_factor */
2019-06-30 23:34:41 +08:00
double getBraceShrinkFactor ( ) const ;
2020-09-21 19:47:54 +08:00
/** \copydoc underbrace_factor */
2019-06-30 23:34:41 +08:00
void setUnderbraceFactor ( double __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc underbrace_factor */
2019-06-30 23:34:41 +08:00
double getUnderbraceFactor ( ) const ;
2022-06-28 03:09:22 +08:00
/** \copydoc underbrace_separation_xfactor */
void setUnderbraceSeparationXFactor ( double __value ) ;
/** \copydoc underbrace_separation_xfactor */
double getUnderbraceSeparationXFactor ( ) const ;
/** \copydoc underbrace_bracesize_xfactor */
void setUnderbraceBraceSizeXFactor ( double __value ) ;
/** \copydoc underbrace_bracesize_xfactor */
double getUnderbraceBraceSizeXFactor ( ) const ;
2022-07-24 20:50:28 +08:00
/** \copydoc underset_factor */
2019-06-30 23:34:41 +08:00
void setUndersetFactor ( double __value ) ;
2022-07-24 20:50:28 +08:00
/** \copydoc underset_factor */
2019-06-30 23:34:41 +08:00
double getUndersetFactor ( ) const ;
2022-06-09 05:52:22 +08:00
/** \copydoc frac_factor */
2019-06-30 23:34:41 +08:00
void setFracFactor ( double __value ) ;
2022-06-09 05:52:22 +08:00
/** \copydoc frac_factor */
2019-06-30 23:34:41 +08:00
double getFracFactor ( ) const ;
2022-06-09 05:52:22 +08:00
/** \copydoc frac_nested_factor */
void setFracNestedFactor ( double __value ) ;
/** \copydoc frac_nested_factor */
double getFracNestedFactor ( ) const ;
/** \copydoc frac_shift_factor */
2019-06-30 23:34:41 +08:00
void setFracShiftFactor ( double __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc frac_shift_factor */
2019-06-30 23:34:41 +08:00
double getFracShiftFactor ( ) const ;
2020-09-21 19:47:54 +08:00
/** \copydoc brace_y_shift_factor */
2019-06-30 23:34:41 +08:00
void setBraceYShiftFactor ( double __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc brace_y_shift_factor */
2019-06-30 23:34:41 +08:00
double getBraceYShiftFactor ( ) const ;
2022-06-07 05:24:05 +08:00
/** \copydoc decoration_height_factor */
2019-06-30 23:34:41 +08:00
void setDecorationHeightFactor ( double __value ) ;
2022-06-07 05:24:05 +08:00
/** \copydoc decoration_height_factor */
2019-06-30 23:34:41 +08:00
double getDecorationHeightFactor ( ) const ;
2022-06-29 05:14:31 +08:00
/** \copydoc decoration_separation_factor */
void setDecorationSeparationXFactor ( double __value ) ;
/** \copydoc decoration_separation_factor */
double getDecorationSeparationFactor ( ) const ;
2022-06-07 05:24:05 +08:00
/** \copydoc decoration_width_reduction_Xfactor */
2022-06-29 05:14:31 +08:00
void setDecorationWidthReductionFactor ( double __value ) ;
2022-06-07 05:24:05 +08:00
/** \copydoc decoration_width_reduction_Xfactor */
double getDecorationWidthReductionXFactor ( ) const ;
2022-06-28 18:00:20 +08:00
/** \copydoc sqrt_width_Xfactor */
void setSqrtWidthXFactor ( double __value ) ;
/** \copydoc sqrt_width_Xfactor */
double getSqrtWidthXFactor ( ) const ;
/** \copydoc sqrt_height_factor */
void setSqrtHeightFactor ( double __value ) ;
/** \copydoc sqrt_height_factor */
double getSqrtHeightFactor ( ) const ;
/** \copydoc sqrt_smallfont_factor */
void setSqrtSmallFontFactor ( double __value ) ;
/** \copydoc sqrt_smallfont_factor */
double getSqrtSmallFontFactor ( ) const ;
2022-08-12 18:54:10 +08:00
/** \copydoc matrix_linewidth_thin_factor */
double getMatrixLinewidthThinFactor ( ) ;
/** \copydoc matrix_linewidth_thin_factor */
void setMatrixLinewidthThinFactor ( double factor ) ;
/** \copydoc matrix_linewidth_heavy_factor */
double getMatrixLinewidthHeavyFactor ( ) ;
/** \copydoc matrix_linewidth_heavy_factor */
void setMatrixLinewidthHeavyFactor ( double factor ) ;
/** \copydoc matrix_line_separation_factor */
double getMatrixLineSeparationFactor ( ) ;
/** \copydoc matrix_line_separation_factor */
void setMatrixLineSeparationFactor ( double factor ) ;
/** \copydoc matrix_xSeparation_factor */
double getMatrixXSeparationFactor ( ) ;
/** \copydoc matrix_xSeparation_factor */
void setMatrixXSeparationFactor ( double factor ) ;
/** \copydoc matrix_ySeparation_factor */
double getMatrixYSeparationFactor ( ) ;
/** \copydoc matrix_ySeparation_factor */
void setMatrixYSeparationFactor ( double factor ) ;
/** \copydoc matrix_xPadding_factor */
double getMatrixXPaddingFactor ( ) ;
/** \copydoc matrix_xPadding_factor */
void setMatrixXPaddingFactor ( double factor ) ;
/** \copydoc matrix_yPadding_factor */
double getMatrixYPaddingFactor ( ) ;
/** \copydoc matrix_yPadding_factor */
void setMatrixYPaddingFactor ( double factor ) ;
2022-06-28 18:00:20 +08:00
2020-09-21 19:47:54 +08:00
/** \copydoc useUnparsed */
2019-06-30 23:34:41 +08:00
void setUseUnparsed ( bool __value ) ;
2020-09-21 19:47:54 +08:00
/** \copydoc useUnparsed */
2019-06-30 23:34:41 +08:00
bool isUsingUnparsed ( ) const ;
2022-06-08 21:38:26 +08:00
/** \copydoc error_list */
2019-06-30 23:34:41 +08:00
QStringList getErrorList ( ) const ;
2022-08-07 23:57:52 +08:00
/** \brief returns \c true when errors were registered in the system \see error_list */
bool hadErrors ( ) const ;
2022-06-08 21:38:26 +08:00
/** \copydoc error_list */
void addToErrorList ( const QString & error ) ;
2015-07-11 18:56:02 +08:00
protected :
2019-05-06 01:31:20 +08:00
/** \brief table with font replacements to use (e.g. if it is known that a certain font is not good for rendering, you can add
* an alternative using addReplacementFont ( ) . These are automatically applied , when setting a new font name ! */
QMap < QString , QString > fontReplacements ;
2019-06-30 23:34:41 +08:00
/** \brief acompanies fontReplacements and collects the encodings of the replacement fonts, if no entry is present, the default encoding is used, as given to the setter! */
2022-06-08 21:38:26 +08:00
QMap < QString , JKQTMathTextFontEncoding > fontEncodingReplacements ;
2015-07-11 18:56:02 +08:00
/** \brief font color */
2019-01-10 04:23:24 +08:00
QColor fontColor ;
2022-07-05 03:02:43 +08:00
/** \brief base font size in the units defined in fontSizeUnits \see fontSizeUnits */
2019-01-10 04:23:24 +08:00
double fontSize ;
2022-07-05 03:02:43 +08:00
/** \brief unit of fontSize */
JKQTMathTextEnvironment : : FontSizeUnit fontSizeUnits ;
2019-06-30 23:34:41 +08:00
/** \brief stores information about the different fonts used by LaTeX markup */
2022-06-08 21:38:26 +08:00
QHash < JKQTMathTextEnvironmentFont , JKQTMathTextFontDefinition > fontDefinitions ;
2022-08-10 18:12:30 +08:00
/** \brief specifies how to draw blackboard font characters (i.e. \c \\mathbb{N} )
*
* Blackboard fonts are not widely available on target systems ( viable fonts are e . g .
* < code > " Double Stroke " , " CloisterOpenFace BT " , " GoudyHandtooled BT " , " Castellar " , " MathJax_AMS " , " Castellar Standard " , " MathJax_AMS Standard " , " Colonna MT " < / code > ) .
* But the most important blackboard characters are usually available in the higher unicode
* codepoints of Fonts specialized for math ( e . g . XIST , STIX , ASANA ) .
2022-08-08 04:13:31 +08:00
*
2022-08-10 18:12:30 +08:00
* Therefore JKQTMathText supports using these characters , or simulating a blackboard font in
* addition to using one of the fonts above . You can set that by setting
* JKQTMathText : : setFontBlackboradMode ( ) with one of the options from JKQTMathTextBlackboradDrawingMode :
* - MTBBDMfontDirectly : use a blackboard font specified by JKQTMathText : : setFontBlackboard ( ) \ image html jkqtmathtext / jkqtmathtext_bb_font_directly . png using \ c JKQTMathText : : setFontBlackboard ( " Castellar " )
* - MTBBDMsimulate : \ image html jkqtmathtext / jkqtmathtext_bb_simulate . png using \ c JKQTMathText : : setFontBlackboard ( " Arial " )
* - MTBBDMunicodeCharactersOrFontDirectly : \ image html jkqtmathtext / jkqtmathtext_bb_unicode_or_font_directly . png using \ c JKQTMathText : : setFontBlackboard ( " Castellar " )
* - MTBBDMunicodeCharactersOrSimulate : \ image html jkqtmathtext / jkqtmathtext_bb_unicode_or_simulate . png using \ c JKQTMathText : : setFontBlackboard ( " Arial " )
* .
2022-08-08 04:13:31 +08:00
*
2022-08-10 18:12:30 +08:00
* \ see setFontBlackboard ( ) setBlackboardFontMode ( )
2022-08-08 04:13:31 +08:00
*/
2022-08-10 18:12:30 +08:00
JKQTMathTextBlackboradDrawingMode blackboradFontMode ;
2019-06-30 23:34:41 +08:00
2015-07-11 18:56:02 +08:00
/** \brief resizing factor for braces in math mode */
2019-01-10 04:23:24 +08:00
double brace_factor ;
2015-07-11 18:56:02 +08:00
/** \brief shrinking the width of braces in math mode 0: reduce to 0 pixel width, 1: leave unchanged*/
2019-01-10 04:23:24 +08:00
double brace_shrink_factor ;
2015-07-11 18:56:02 +08:00
/** \brief resizing factor for font size in sub-/superscript */
2019-01-10 04:23:24 +08:00
double subsuper_size_factor ;
2022-06-26 06:28:49 +08:00
/** \brief this factor is used to determine how to typeset sub-/superscript.
*
* If the ascent for superscript of descent for subscript of the previous character is \ c > = subsuper_mode_selection_by_size_factor * ascent ( currentFont )
* or \ c < = subsuper_mode_selection_by_size_factor * descent ( currentFont ) respectively , the sub / superscript is typeset , aligned with the ascent or descent
* of the previous character . Otherwise it is aligned with the default method :
*
* < b > Default mode : < / b >
* \ image html jkqtmathtext_superscriptnode_getSizeInternal . png
* \ image html jkqtmathtext_subscriptnode_getSizeInternal . png
*
* < b > Special mode : < / b >
*
*
* This method fixes problems with characters that are significantyl larger that normal text character of the fonst , such as generated
* by \ c \ \ sum , \ \ int , . . . .
*/
double subsuper_mode_selection_by_size_factor ;
2015-07-11 18:56:02 +08:00
/** \brief fraction of a whitespace by which to shift a sub-/superscript left/right when the previous text is italic */
2019-01-10 04:23:24 +08:00
double italic_correction_factor ;
2022-06-26 06:28:49 +08:00
/** \brief like subsuper_size_factor, but for operators (\c \\sum , \c \\int , ...) where the text is placed above/below the symbol */
2019-01-10 04:23:24 +08:00
double operatorsubsuper_size_factor ;
2022-06-26 06:28:49 +08:00
/** \brief for operators (\c \\sum , \c \\int , ...) where the text is placed above/below the symbol, this is the distance between the operator symbol and the sub-/super-text if multiplied by xHeight
*
* \ image html jkqtmathtext_subsuper_with_limits . png
*/
double operatorsubsuper_distance_factor ;
/** \brief for operators (\c \\sum , \c \\int , ...) where the text is placed above/below the symbol, this is the additional width added to the width of maximum width of the operator, above and below
*
* \ image html jkqtmathtext_subsuper_with_limits . png
*/
double operatorsubsuper_extraspace_factor ;
2022-06-28 04:57:49 +08:00
/** \brief for integrals (\c \\int , \c \\oint , ...) the sub-/superscripts above/below the symbol have to be shifted a bit to the left/right to accomodate the shape of the operator symbol (i.e. some free space at the top-left and bottom-right)
*
* This factor is multiplied by the symbol width : xshift = intsubsuper_xcorrection_factor * symbolWidth
* Then the subscript below is placed at centerx ( symbol ) - xshift and the superscript at centerx ( symbol ) + shiftx .
* This is also used to correct a subset next to the symbol by shifting it to rightx ( symbol ) - xshift .
*
* This correction is applied to \ \ int , \ \ iint , \ \ iiint , \ \ oint , . . .
*/
double intsubsuper_xcorrection_factor ;
/** \brief for integrals (\c \\int , \c \\oint , ...) the subscripts besides the symbol have to be shifted to the left a bit to the left to accomodate the shape of the operator symbol (i.e. some free space at the bottom-right)
*
* This factor is multiplied by the width of an x : xshift = intsubbesides_xcorrection_xfactor * xWidth
* Then the subscript besides the symbol is shifted by xshift to the left
*
* This correction is applied to \ \ int , \ \ iint , \ \ iiint , \ \ oint , . . .
*/
double intsubbesides_xcorrection_xfactor ;
2022-06-20 18:17:32 +08:00
/** \brief factor, used to extend the size of an operator in math mode
*
* The next image demonstrates the effect of this property , which adds extra space
* around certain math operators in math mode :
*
2022-07-24 20:50:28 +08:00
* \ image html jkqtmathtext / jkqtmathtext_mathoperator_width_factor . png
2022-06-20 18:17:32 +08:00
*/
2019-01-10 04:23:24 +08:00
double mathoperator_width_factor ;
2022-06-26 06:28:49 +08:00
/** \brief factor, used to increase the font size for big math operators, such as \c \\sum , \c \\prod , ...
*
*/
double bigmathoperator_font_factor ;
2015-07-11 18:56:02 +08:00
/** \brief relative shift of text in superscript to normal text:
2022-06-20 18:17:32 +08:00
* 0 = baseline kept , 1 : baseline shifted to top of normal text
*
* \ image html jkqtmathtext_superscriptnode_getSizeInternal . png
*/
2019-01-10 04:23:24 +08:00
double super_shift_factor ;
2015-07-11 18:56:02 +08:00
/** \brief relative shift of text in subscript to normal text:
2022-06-20 18:17:32 +08:00
* 0 = baseline kept , 1 : baseline shifted to bottom of normal text
*
* \ image html jkqtmathtext_subscriptnode_getSizeInternal . png
*/
2019-01-10 04:23:24 +08:00
double sub_shift_factor ;
2022-06-26 06:28:49 +08:00
/** \brief relative shift of text in superscript to normal text in special superscript mode (after large previous nodes):
* 0 = superscript descent coincides with the previous node ' s baselineHeight , 1 : top of previous node and top of the superscript nodes coincide
*
* \ image html jkqtmathtext_specialsuperscriptnode_getSizeInternal . png
*/
double special_super_shift_factor ;
/** \brief relative shift of text in subscript to normal text in special superscript mode (after large previous nodes):
* 0 = child ' s baseline at the descent of the previous node , 1 : subscript - node starts at the descent of the previous node
*
* \ image html jkqtmathtext_specialsubscriptnode_getSizeInternal . png
*/
double special_sub_shift_factor ;
2019-06-30 23:34:41 +08:00
2022-06-20 18:17:32 +08:00
/** \brief scaling factor for font size of nominator and denominator of a fraction
*
2022-07-24 20:50:28 +08:00
* \ image html jkqtmathtext / jkqtmathtext_frac_factor . png
2022-06-20 18:17:32 +08:00
*/
2019-01-10 04:23:24 +08:00
double frac_factor ;
2022-06-20 18:17:32 +08:00
/** \brief scaling factor for font size of nominator and denominator of a nested fraction
*
2022-07-24 20:50:28 +08:00
* \ image html jkqtmathtext / jkqtmathtext_frac_factor . png
2022-06-20 18:17:32 +08:00
*/
2022-06-09 05:52:22 +08:00
double frac_nested_factor ;
2022-06-20 18:17:32 +08:00
/** \brief shift of denominator/nummerator away from central line of a frac
*
* \ image html jkqtmathtext_fracnode_geo . png
*/
2019-01-10 04:23:24 +08:00
double frac_shift_factor ;
2015-07-11 18:56:02 +08:00
/** \brief scaling factor for font of underbrace/overbrace text */
2019-01-10 04:23:24 +08:00
double underbrace_factor ;
2015-07-11 18:56:02 +08:00
/** \brief scaling factor for font of underset/overset text */
2022-06-20 18:17:32 +08:00
double underset_factor ;
2022-06-28 03:09:22 +08:00
/** \brief additional space between the main text to the curly brace and the brace to underbrace/overbrace, multiplied with height("x") */
double underbrace_separation_xfactor ;
/** \brief height of the brace in underbrace/overbrace, multiplied with ascent */
double underbrace_bracesize_xfactor ;
2015-07-11 18:56:02 +08:00
/** \brief fraction of the brace ascent that the brace is shifted downwards, when scaled */
2019-01-10 04:23:24 +08:00
double brace_y_shift_factor ;
2022-06-29 05:14:31 +08:00
/** \brief size of the decorations (dot, tilde, ...), as fraction of the ascent
2022-06-07 05:24:05 +08:00
*
2022-06-09 20:42:25 +08:00
* \ image html jkqtmathtext / decoration_sizing . png
2022-06-07 05:24:05 +08:00
*/
2019-01-10 04:23:24 +08:00
double decoration_height_factor ;
2022-06-29 05:14:31 +08:00
/** \brief separation between the text and the decorations (dot, tilde, ...), as fraction of the ascent
*
* \ image html jkqtmathtext / decoration_sizing . png
*/
double decoration_separation_factor ;
2022-06-07 05:24:05 +08:00
/** \brief a decoration has a size, which is slightly smaller than the text- width. the width is reduced by \c decoration_width_reduction_Xfactor*width("X") and the position is centered around the child-box. Also an italic correction is applied:
*
2022-06-09 20:42:25 +08:00
* \ image html jkqtmathtext / decoration_sizing . png
2022-06-07 05:24:05 +08:00
*/
double decoration_width_reduction_Xfactor ;
2022-06-28 18:00:20 +08:00
/** \brief scaling factor for the small font used to indicate the degree of the sqrt */
double sqrt_smallfont_factor ;
/** \brief width of the sqrt-symbol, as factor to width("X") */
double sqrt_width_Xfactor ;
/** \brief height-increase of the sqrt-symbol, as factor of the child's height */
double sqrt_height_factor ;
2022-08-12 18:54:10 +08:00
/** \brief width of thin table lines, this factor is multiplied with the current \c font.linewidth()
*
* \ image html jkqtmathtext / jkqtmathtext_matrix_geometry . png
*/
double matrix_linewidth_thin_factor ;
/** \brief width of heavy table lines, this factor is multiplied with the current \c font.linewidth()
*
* \ image html jkqtmathtext / jkqtmathtext_matrix_geometry . png
*/
double matrix_linewidth_heavy_factor ;
/** \brief separation of double-lines in tables, this factor is multiplied with the \c font.linewidth()
*
* \ image html jkqtmathtext / jkqtmathtext_matrix_geometry . png
*/
double matrix_line_separation_factor ;
/** \brief x-separation of two columns, this factor is multiplied with the \c font.width("x")
*
* \ image html jkqtmathtext / jkqtmathtext_matrix_geometry . png
*/
double matrix_xSeparation_factor ;
/** \brief y-separation of two columns, this factor is multiplied with the \c font.width("x")
*
* \ image html jkqtmathtext / jkqtmathtext_matrix_geometry . png
*/
double matrix_ySeparation_factor ;
/** \brief x-padding of two columns, this factor is multiplied with the \c font.width("x")
*
* \ image html jkqtmathtext / jkqtmathtext_matrix_geometry . png
*/
double matrix_xPadding_factor ;
/** \brief y-padding of two columns, this factor is multiplied with the \c font.width("x")
*
* \ image html jkqtmathtext / jkqtmathtext_matrix_geometry . png
*/
double matrix_yPadding_factor ;
2022-08-07 23:57:52 +08:00
/** \brief a list that will be filled with error messages while parsing, if any error occur
*
* This list of errors is ( mostly ) filled during a call to parse ( ) . During rendering ( e . g . with draw ( ) )
* only very few errors will be detected , as most errors are caused by wrong markup .
*
* A call to parse ( ) also clears this list .
*
* \ see getErrorList ( ) , hadErrors ( ) and addToErrorList ( )
*
*/
2015-07-11 18:56:02 +08:00
QStringList error_list ;
/** \brief the result of parsing the last string supplied to the object via parse() */
2022-06-08 21:38:26 +08:00
JKQTMathTextNode * parsedNode ;
2015-07-11 18:56:02 +08:00
/** \brief a tree containing the unparsed text as a single node */
2022-06-08 21:38:26 +08:00
JKQTMathTextNode * unparsedNode ;
2022-08-07 23:57:52 +08:00
/** \brief if true, the unparsedNode is drawn \see unparsedNode */
2015-07-11 18:56:02 +08:00
bool useUnparsed ;
2022-06-20 18:17:32 +08:00
/** \brief returns the syntax tree of JKQTMathTextNode's that was created by the last parse call */
JKQTMathTextNode * getNodeTree ( ) const ;
2015-07-11 18:56:02 +08:00
/** \brief the token types that may arrise in the string */
enum tokenType {
2022-06-19 21:11:06 +08:00
MTTnone , /*!< \brief no token */
MTTtext , /*!< \brief a piece of general text */
2022-07-31 14:32:36 +08:00
MTTinstruction , /*!< \brief an instruction, started by \c "\", e.g. \c "\\textbf", ... */
MTTinstructionNewline , /*!< \brief a newline instruction \c "\\" */
2022-08-03 21:23:14 +08:00
MTTinstructionVerbatim , /*!< \brief a verbatim instruction, e.g. \c \\verb!verbatimtext! was found: currentTokenName will contain the text enclode by the verbatim delimiters */
2022-08-07 23:57:52 +08:00
MTTinstructionVerbatimVisibleSpace , /*!< \brief a verbatim instruction that generates visible whitespaces, e.g. \c \\begin{verbatim}...\\end{verbatim} was found: currentTokenName will contain the text enclode by the verbatim delimiters */
2022-08-03 21:23:14 +08:00
MTTinstructionBegin , /*!< \brief a \c '\\begin{...}' instruction, currentTokenName is the name of the environment */
MTTinstructionEnd , /*!< \brief a \c '\\end{...}' instruction, currentTokenName is the name of the environment */
2022-06-20 18:17:32 +08:00
MTTunderscore , /*!< \brief the character \c "_" */
MTThat , /*!< \brief the character \c "^" */
MTTdollar , /*!< \brief the character \c "$" */
MTTopenbrace , /*!< \brief the character \c "{" */
MTTclosebrace , /*!< \brief the character \c "}" */
MTTopenbracket , /*!< \brief the character \c "[" */
MTTclosebracket , /*!< \brief the character \c "]" */
2022-06-19 21:11:06 +08:00
MTTwhitespace , /*!< \brief some whitespace */
2022-07-31 05:30:47 +08:00
MTTampersand , /*!< \brief the character \c "&" */
2022-08-01 17:44:38 +08:00
MTThyphen , /*!< \brief the single hyphen character \c "-" in text-mode \note MTTendash and MTTemdash take precedence over MTThypen */
MTTendash , /*!< \brief the en-dash character sequence \c "--" in text-mode */
MTTemdash , /*!< \brief the em-dash character sequence \c "---" in text-mode */
2022-08-03 21:23:14 +08:00
2015-07-11 18:56:02 +08:00
} ;
2022-08-07 23:57:52 +08:00
/** \brief convert a tokenType into a string, e.g. for debugging output */
2022-08-03 15:55:45 +08:00
static QString tokenType2String ( tokenType type ) ;
2015-07-11 18:56:02 +08:00
/** \brief tokenizer for the LaTeX parser */
tokenType getToken ( ) ;
2022-08-03 15:55:45 +08:00
/** \brief returns some characters to the Tokenizer */
void giveBackToTokenizer ( size_t count ) ;
2022-06-19 21:11:06 +08:00
/** \brief parse a LaTeX string
*
* \ param get if \ c true this calls getToken ( )
* \ param quitOnClosingBrace if unequal MTBTAny , this returns if the given closing brace is found
2022-07-24 20:50:28 +08:00
* \ param quitOnEnvironmentEnd wuit if \ c \ \ end { quitOnEnvironmentEnd } is found
2022-06-19 21:11:06 +08:00
* \ param quitOnClosingBracket if \ c true , quits on encountering a MTTclosebracket token
*/
JKQTMathTextNode * parseLatexString ( bool get , JKQTMathTextBraceType quitOnClosingBrace = JKQTMathTextBraceType : : MTBTAny , const QString & quitOnEnvironmentEnd = QString ( " " ) , bool quitOnClosingBracket = false ) ;
2022-07-09 05:15:42 +08:00
/** \brief parses a list of string-arguments, i.e. \c {p1}{p2}{...}
*
* \ param get call getToken ( ) at the start , otherwise it is expected that currentToken = = MTTopenbrace
* \ param Nparams the number of parameters to expect
* \ param [ out ] foundError will be set to \ c true if an error occured ( unexpected token ) or \ c false otherwise
* \ return the list of parameter strings with Nparam entries or an empty or partial list on error
*/
QStringList parseStringParams ( bool get , size_t Nparams , bool * foundError = nullptr ) ;
2022-07-31 05:30:47 +08:00
/** \brief parses a string, i.e. a sequence of text and whitespaces. returns after any other token was found */
QString parseSingleString ( bool get ) ;
2022-08-03 21:23:14 +08:00
/** \brief read all text without tokenizing, until the sequence \a endsequence is found.
*
* \ param get if \ c true the functions begins by reading a new character , otherwise the current character is used as first character
* \ param endsequence the sequence , ending the read
* \ return the read string , excluding the \ a endsequence
*/
QString readUntil ( bool get , const QString & endsequence ) ;
2022-07-09 05:15:42 +08:00
/** \brief parses a single instruction (including it's parameters)
*
* \ param [ out ] _foundError will be set to \ c true if an error occured ( unexpected token ) or \ c false otherwise
* \ param [ out ] getNew returns \ c true if the parser has to call getToken ( ) to go on
* \ return the instruction node or \ c nullptr on error ( then also \ a _foundError is set \ c true )
* \ note This method expects the current token currentToken to be MTTinstruction
*/
JKQTMathTextNode * parseInstruction ( bool * _foundError = nullptr , bool * getNew = nullptr ) ;
2015-07-11 18:56:02 +08:00
/** \brief parse a LaTeX math environment */
2022-06-08 21:38:26 +08:00
JKQTMathTextNode * parseMath ( bool get ) ;
2015-07-11 18:56:02 +08:00
/** \brief used by the tokenizer. type of the current token */
tokenType currentToken ;
2022-07-07 04:44:02 +08:00
/** \brief the JKQTMathTextBraceType associated with the last \c \\right command the parser encountered */
JKQTMathTextBraceType lastRightBraceType ;
2022-08-12 18:54:10 +08:00
/** \brief returns the number of \c \\hline , \c \\hdashline , ... commands in the last parseLatexString() call */
QMap < QString , size_t > lastLineCount ;
2015-07-11 18:56:02 +08:00
/** \brief used by the tokenizer. Name of the current token, id applicable */
QString currentTokenName ;
/** \brief used by the tokenizer. Points to the currently read character in parseString */
int currentTokenID ;
/** \brief used by the tokenizer. The string to be parsed */
QString parseString ;
/** \brief used by the parser. indicates whether we are in a math environment */
bool parsingMathEnvironment ;
public :
2020-09-21 19:47:54 +08:00
/** \copydoc parsedNode */
2022-06-08 21:38:26 +08:00
JKQTMathTextNode * getParsedNode ( ) const ;
2015-07-11 18:56:02 +08:00
} ;
# endif // JKQTMATHTEXT_H