Krita Source Code Documentation
Loading...
Searching...
No Matches
KisUiFont.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2021 Alvin Wong <alvin@alvinhc.com>
3 *
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7#ifndef KIS_UI_FONT_H
8#define KIS_UI_FONT_H
9
10#include "kritaui_export.h"
11
12#include <QFont>
13
14namespace KisUiFont
15{
16
21KRITAUI_EXPORT QFont normalFont();
22
27KRITAUI_EXPORT QFont dockFont();
28
29} // namespace KisUiFont
30
31#endif // KIS_UI_FONT_H
QFont normalFont()
Gets a font for normal UI widgets to use.
Definition KisUiFont.cpp:81
QFont dockFont()
Gets a font with a smallish font size for dock widgets to use.
Definition KisUiFont.cpp:98