mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
91b385166d
It is a bad idea to have a QObject variable that oulives the main QApplication object. See for example: https://www.ics.com/designpatterns/book/globals.html Here the QTextLayout object was static to the anonymous namespace getTextLayout function, and got destroyed after the freetype renderer had been disposed of by QApplication. This causes segmentation faults when quitting LyX on some systems. This patch moves the cache together with other GuiFontMetrics caches. It means that one will have one such QTextLayout per font type, but this will not change much.
109 lines
2.7 KiB
C++
109 lines
2.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiFontMetrics.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUI_FONT_METRICS_H
|
|
#define GUI_FONT_METRICS_H
|
|
|
|
#include "frontends/FontMetrics.h"
|
|
|
|
#include "support/docstring.h"
|
|
|
|
#include <QByteArray>
|
|
#include <QCache>
|
|
#include <QFont>
|
|
#include <QFontMetrics>
|
|
#include <QHash>
|
|
#include <QTextLayout>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class GuiFontMetrics : public FontMetrics
|
|
{
|
|
public:
|
|
GuiFontMetrics(QFont const & font);
|
|
|
|
virtual ~GuiFontMetrics() {}
|
|
|
|
virtual int maxAscent() const;
|
|
virtual int maxDescent() const;
|
|
virtual Dimension const defaultDimension() const;
|
|
virtual int em() const;
|
|
virtual int lineWidth() const;
|
|
virtual int underlinePos() const;
|
|
virtual int strikeoutPos() const;
|
|
virtual int width(char_type c) const;
|
|
virtual int ascent(char_type c) const;
|
|
virtual int descent(char_type c) const;
|
|
virtual int lbearing(char_type c) const;
|
|
virtual int rbearing(char_type c) const;
|
|
virtual int width(docstring const & s) const;
|
|
virtual int signedWidth(docstring const & s) const;
|
|
virtual int pos2x(docstring const & s, int pos, bool rtl, double ws) const;
|
|
virtual int x2pos(docstring const & s, int & x, bool rtl, double ws) const;
|
|
virtual bool breakAt(docstring & s, int & x, bool rtl, bool force) const;
|
|
virtual Dimension const dimension(char_type c) const;
|
|
|
|
virtual void rectText(docstring const & str,
|
|
int & width,
|
|
int & ascent,
|
|
int & descent) const;
|
|
virtual void buttonText(docstring const & str,
|
|
int & width,
|
|
int & ascent,
|
|
int & descent) const;
|
|
///
|
|
int width(QString const & str) const;
|
|
|
|
private:
|
|
|
|
QTextLayout const &
|
|
getTextLayout(docstring const & s, QFont font,
|
|
bool const rtl, double const wordspacing) const;
|
|
|
|
/// The font
|
|
QFont font_;
|
|
|
|
/// Metrics on the font
|
|
QFontMetrics metrics_;
|
|
|
|
/// Cache of char widths
|
|
mutable QHash<char_type, int> width_cache_;
|
|
|
|
/// Cache of string widths
|
|
mutable QCache<QByteArray, int> strwidth_cache_;
|
|
|
|
struct AscendDescend {
|
|
int ascent;
|
|
int descent;
|
|
};
|
|
/// Cache of char ascends and descends
|
|
mutable QHash<char_type, AscendDescend> metrics_cache_;
|
|
/// fill in \c metrics_cache_ at specified value.
|
|
AscendDescend const fillMetricsCache(char_type) const;
|
|
|
|
/// Cache of char right bearings
|
|
mutable QHash<char_type, int> rbearing_cache_;
|
|
|
|
// A trivial QTextLayout cache
|
|
mutable QTextLayout tl_cache_;
|
|
mutable docstring tl_cache_s_;
|
|
mutable QFont tl_cache_font_;
|
|
mutable bool tl_cache_rtl_;
|
|
mutable double tl_cache_wordspacing_;
|
|
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUI_FONT_METRICS_H
|