MuseScore/src/framework/fonts/fontsmodule.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.7 KiB
C++
Raw Normal View History

/*
* SPDX-License-Identifier: GPL-3.0-only
* MuseScore-CLA-applies
*
* MuseScore
* Music Composition & Notation
*
* Copyright (C) 2021 MuseScore BVBA and others
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* 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 <https://www.gnu.org/licenses/>.
*/
#include "fontsmodule.h"
2020-12-05 16:59:48 +01:00
#include <QtGlobal>
#include "modularity/ioc.h"
#include "internal/fontssetup.h"
using namespace mu::fonts;
static std::shared_ptr<FontsSetup> s_fontsSetup = std::make_shared<FontsSetup>();
static void init_fonts_qrc()
{
2020-09-21 12:48:49 +02:00
Q_INIT_RESOURCE(fonts_Leland);
Q_INIT_RESOURCE(fonts_Bravura);
Q_INIT_RESOURCE(fonts_Campania);
2021-02-08 15:08:29 +01:00
Q_INIT_RESOURCE(fonts_Edwin);
Q_INIT_RESOURCE(fonts_FreeSans);
Q_INIT_RESOURCE(fonts_FreeSerif);
Q_INIT_RESOURCE(fonts_Gootville);
2021-02-08 15:08:29 +01:00
Q_INIT_RESOURCE(fonts_Leland);
Q_INIT_RESOURCE(fonts_MScore);
Q_INIT_RESOURCE(fonts_MuseJazz);
Q_INIT_RESOURCE(fonts_Smufl);
Q_INIT_RESOURCE(fonts_Petaluma);
Q_INIT_RESOURCE(fonts_Tabulature);
}
std::string FontsModule::moduleName() const
{
return "fonts";
}
void FontsModule::registerResources()
{
init_fonts_qrc();
}
void FontsModule::onInit(const mu::framework::IApplication::RunMode&)
{
s_fontsSetup->setup();
}