MuseScore/src/framework/fonts/fontsmodule.cpp

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

53 lines
1.5 KiB
C++
Raw Normal View History

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2020 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 2.
//
// 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, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#include "fontsmodule.h"
#include "modularity/ioc.h"
using namespace mu::fonts;
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);
Q_INIT_RESOURCE(fonts_Free);
Q_INIT_RESOURCE(fonts_FreeSerif);
Q_INIT_RESOURCE(fonts_Gootville);
Q_INIT_RESOURCE(fonts_MScore);
Q_INIT_RESOURCE(fonts_MuseJazz);
Q_INIT_RESOURCE(fonts_Smufl);
Q_INIT_RESOURCE(fonts_Tabulature);
Q_INIT_RESOURCE(fonts_Petaluma);
}
std::string FontsModule::moduleName() const
{
return "fonts";
}
void FontsModule::registerResources()
{
init_fonts_qrc();
}
void FontsModule::registerExports()
{
}