mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Improved fix for #9966
* provide GuiApplication::typewriterSystemFont() to get a fixed font consistently * enlarge fixed font on Mac because of the too small default Qt system font * use it in source pane, progress view, log view and document preamble editor
This commit is contained in:
parent
4807338ba9
commit
87c85303c5
@ -82,6 +82,7 @@
|
||||
|
||||
#include <queue>
|
||||
|
||||
#include <QFontDatabase>
|
||||
#include <QByteArray>
|
||||
#include <QClipboard>
|
||||
#include <QDateTime>
|
||||
@ -2557,11 +2558,41 @@ QString const GuiApplication::sansFontName()
|
||||
|
||||
QString const GuiApplication::typewriterFontName()
|
||||
{
|
||||
QFont font;
|
||||
font.setStyleHint(QFont::TypeWriter);
|
||||
font.setFamily("monospace");
|
||||
return QFontInfo(typewriterSystemFont()).family();
|
||||
}
|
||||
|
||||
return QFontInfo(font).family();
|
||||
|
||||
namespace {
|
||||
// We cannot use QFont::fixedPitch() because it doesn't
|
||||
// return the fact but only if it is requested.
|
||||
static bool isFixedPitch(const QFont & font) {
|
||||
const QFontInfo fi(font);
|
||||
return fi.fixedPitch();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
QFont const GuiApplication::typewriterSystemFont()
|
||||
{
|
||||
#if QT_VERSION >= 0x050200
|
||||
QFont font = QFontDatabase::systemFont(QFontDatabase::FixedFont);
|
||||
#else
|
||||
QFont font("monospace");
|
||||
#endif
|
||||
if (!isFixedPitch(font)) {
|
||||
// try to enforce a real monospaced font
|
||||
font.setStyleHint(QFont::Monospace);
|
||||
if (!isFixedPitch(font)) {
|
||||
font.setStyleHint(QFont::TypeWriter);
|
||||
if (!isFixedPitch(font)) font.setFamily("courier");
|
||||
}
|
||||
}
|
||||
#ifdef Q_OS_MAC
|
||||
// On a Mac the result is too small and it's not practical to
|
||||
// rely on Qtconfig utility to change the system settings of Qt.
|
||||
font.setPointSize(12);
|
||||
#endif
|
||||
return font;
|
||||
}
|
||||
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
class QAbstractItemModel;
|
||||
class QIcon;
|
||||
class QSessionManager;
|
||||
class QFont;
|
||||
|
||||
namespace lyx {
|
||||
|
||||
@ -145,6 +146,8 @@ public:
|
||||
|
||||
/// return a suitable monospaced font name.
|
||||
QString const typewriterFontName();
|
||||
QFont const typewriterSystemFont();
|
||||
|
||||
///
|
||||
void unregisterView(GuiView * gv);
|
||||
///
|
||||
|
@ -453,10 +453,7 @@ PreambleModule::PreambleModule() : current_id_(0)
|
||||
// This is not a memory leak. The object will be destroyed
|
||||
// with this.
|
||||
(void) new LaTeXHighlighter(preambleTE->document());
|
||||
QFont font(guiApp->typewriterFontName());
|
||||
font.setFixedPitch(true);
|
||||
font.setStyleHint(QFont::TypeWriter);
|
||||
preambleTE->setFont(font);
|
||||
preambleTE->setFont(guiApp->typewriterSystemFont());
|
||||
preambleTE->setWordWrapMode(QTextOption::NoWrap);
|
||||
setFocusProxy(preambleTE);
|
||||
connect(preambleTE, SIGNAL(textChanged()), this, SIGNAL(changed()));
|
||||
|
@ -133,10 +133,7 @@ GuiLog::GuiLog(GuiView & lv)
|
||||
highlighter = new LogHighlighter(logTB->document());
|
||||
|
||||
logTB->setReadOnly(true);
|
||||
QFont font(guiApp->typewriterFontName());
|
||||
font.setFixedPitch(true);
|
||||
font.setStyleHint(QFont::TypeWriter);
|
||||
logTB->setFont(font);
|
||||
logTB->setFont(guiApp->typewriterSystemFont());
|
||||
}
|
||||
|
||||
|
||||
|
@ -71,10 +71,7 @@ GuiProgressView::GuiProgressView(GuiView & parent, Qt::DockWidgetArea area,
|
||||
widget_->adjustSize();
|
||||
setWidget(widget_);
|
||||
|
||||
QFont font(guiApp->typewriterFontName());
|
||||
font.setFixedPitch(true);
|
||||
font.setStyleHint(QFont::TypeWriter);
|
||||
widget_->outTE->setFont(font);
|
||||
widget_->outTE->setFont(guiApp->typewriterSystemFont());
|
||||
widget_->tabWidget->widget(0)->setContentsMargins(-5, -7, 0, -7);
|
||||
|
||||
connect(widget_->debugNoneRB, SIGNAL(clicked()),
|
||||
|
@ -86,10 +86,7 @@ ViewSourceWidget::ViewSourceWidget()
|
||||
viewSourceTV->setReadOnly(true);
|
||||
///dialog_->viewSourceTV->setAcceptRichText(false);
|
||||
// this is personal. I think source code should be in fixed-size font
|
||||
QFont font(guiApp->typewriterFontName());
|
||||
font.setFixedPitch(true);
|
||||
font.setStyleHint(QFont::TypeWriter);
|
||||
viewSourceTV->setFont(font);
|
||||
viewSourceTV->setFont(guiApp->typewriterSystemFont());
|
||||
// again, personal taste
|
||||
viewSourceTV->setWordWrapMode(QTextOption::NoWrap);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user