keepassxc

Форк
0
/
Font.cpp 
46 строк · 1.6 Кб
1
/*
2
 *  Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
3
 *
4
 *  This program is free software: you can redistribute it and/or modify
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation, either version 2 or (at your option)
7
 *  version 3 of the License.
8
 *
9
 *  This program is distributed in the hope that it will be useful,
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 *  GNU General Public License for more details.
13
 *
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17

18
#include "Font.h"
19

20
#include <QFontDatabase>
21
#include <QGuiApplication>
22

23
QFont Font::defaultFont()
24
{
25
    return qApp->font();
26
}
27

28
QFont Font::fixedFont()
29
{
30
    auto fixedFont = QFontDatabase::systemFont(QFontDatabase::FixedFont);
31

32
#ifdef Q_OS_WIN
33
    // try to use Consolas on Windows, because the default Courier New has too many similar characters
34
    auto consolasFont = QFontDatabase().font("Consolas", fixedFont.styleName(), fixedFont.pointSize());
35
    if (consolasFont.family().contains("consolas", Qt::CaseInsensitive)) {
36
        fixedFont = consolasFont;
37
        // Bump up the font size by one point to match the default font
38
        fixedFont.setPointSize(fixedFont.pointSize() + 1);
39
    }
40
#endif
41
#ifdef Q_OS_MACOS
42
    // Qt doesn't choose a monospace font correctly on macOS
43
    fixedFont = QFontDatabase().font("Menlo", fixedFont.styleName(), fixedFont.pointSize());
44
#endif
45
    return fixedFont;
46
}
47

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.