/* GCompris - GCSingletonFontLoader.qml * * Copyright (C) 2014 Johnny Jazeix * * Authors: * Johnny Jazeix * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import QtQuick 2.0 import GCompris 1.0 //QTBUG-34418, singletons require explicit import to load qmldir file //https://qt-project.org/wiki/QmlStyling#6b81104b320e452a59cc3bf6857115ab import "." // FIXME: this triggers a doxygen error, why? pragma Singleton /** * A QML singleton helper to load currently active font based on current font * settings * @ingroup infrastructure * * @inherit QtQuick.QtObject * @sa ApplicationSettings.isEmbeddedFont, ApplicationSettings.font */ QtObject { property QtObject fontLoader: ApplicationSettings.isEmbeddedFont ? sourceLoader : nameLoader property QtObject fontSourceLoader: FontLoader { id: sourceLoader source: ApplicationSettings.isEmbeddedFont ? "resource/fonts/"+ApplicationSettings.font : "" } property QtObject fontNameLoader: FontLoader { id: nameLoader name: ApplicationSettings.font } }