1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
//=============================================================================
// MusE Score
// Linux Music Score Editor
// $Id: symboldialog.cpp 5384 2012-02-27 12:21:49Z wschweer $
//
// Copyright (C) 2007 Werner Schweer 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 "symboldialog.h"
#include "palette.h"
#include "musescore.h"
#include "libmscore/sym.h"
#include "libmscore/style.h"
#include "libmscore/element.h"
#include "libmscore/symbol.h"
#include "preferences.h"
namespace Ms {
extern Score* gscore;
//---------------------------------------------------------
// createSymbolPalette
//---------------------------------------------------------
void SymbolDialog::createSymbolPalette()
{
sp = new Palette();
createSymbols();
}
//---------------------------------------------------------
// createSymbols
//---------------------------------------------------------
void SymbolDialog::createSymbols()
{
int currentIndex = fontList->currentIndex();
const ScoreFont* f = &ScoreFont::scoreFonts()[currentIndex];
// init the font if not done yet
ScoreFont::fontFactory(f->name());
sp->clear();
for (int i = 0; i < int(SymId::lastSym); ++i) {
if (f->isValid(SymId(i))) {
Symbol* s = new Symbol(gscore);
s->setSym(SymId(i), f);
bool match = true;
if (!search->text().isEmpty())
match = Sym::id2userName(SymId(i)).contains(search->text(), Qt::CaseInsensitive);
if (match)
sp->append(s, Sym::id2userName(SymId(i)));
}
}
}
//---------------------------------------------------------
// SymbolDialog
//---------------------------------------------------------
SymbolDialog::SymbolDialog(QWidget* parent)
: QWidget(parent, Qt::WindowFlags(Qt::Dialog | Qt::Window))
{
setupUi(this);
int idx = 0;
int currentIndex = 0;
for (const ScoreFont& f : ScoreFont::scoreFonts()) {
fontList->addItem(f.name());
if (f.name() == "Bravura")
currentIndex = idx;
++idx;
}
fontList->setCurrentIndex(currentIndex);
setWindowTitle(tr("MuseScore: Symbols"));
QLayout* l = new QVBoxLayout();
frame->setLayout(l);
createSymbolPalette();
QScrollArea* sa = new PaletteScrollArea(sp);
l->addWidget(sa);
sp->setAcceptDrops(false);
sp->setDrawGrid(true);
sp->setSelectable(true);
connect(systemFlag, SIGNAL(stateChanged(int)), SLOT(systemFlagChanged(int)));
connect(fontList, SIGNAL(currentIndexChanged(int)), SLOT(systemFontChanged(int)));
sa->setWidget(sp);
}
//---------------------------------------------------------
// systemFlagChanged
//---------------------------------------------------------
void SymbolDialog::systemFlagChanged(int state)
{
bool sysFlag = state == Qt::Checked;
for (int i = 0; i < sp->size(); ++i) {
Element* e = sp->element(i);
if (e && e->type() == Element::Type::SYMBOL)
static_cast<Symbol*>(e)->setSystemFlag(sysFlag);
}
}
//---------------------------------------------------------
// systemFontChanged
//---------------------------------------------------------
void SymbolDialog::systemFontChanged(int)
{
createSymbols();
}
void SymbolDialog::on_search_textChanged(const QString &searchPhrase)
{
Q_UNUSED(searchPhrase);
createSymbols();
}
void SymbolDialog::on_clearSearch_clicked()
{
search->clear();
createSymbols();
}
}
|