MuseScore/mscore/edittempo.cpp
2013-02-07 13:10:46 +01:00

155 lines
5.1 KiB
C++

//=============================================================================
// MusE Score
// Linux Music Score Editor
// $Id: edittempo.cpp 2649 2010-01-27 23:59:23Z dbolton $
//
// Copyright (C) 2002-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 "edittempo.h"
struct TempoVal {
QString name;
double bpm;
TempoVal(const TempoVal& v) {
name = v.name;
bpm = v.bpm;
}
TempoVal(const char* s, int t) {
name = QString::fromUtf8(s);
bpm = t;
}
};
static TempoVal tempos[] = {
TempoVal("Adagio", 72),
TempoVal("Allegro", 132),
TempoVal("Allegretto", 120),
TempoVal("Andante", 96),
TempoVal("Con brio", 132),
TempoVal("Con moto", 132),
TempoVal("Grave", 48),
TempoVal("Largo", 48),
TempoVal("Lento", 48),
TempoVal("Maestoso", 72),
TempoVal("Moderato", 112),
TempoVal("Prestissimo", 200),
TempoVal("Presto", 184),
TempoVal("Vivace", 144),
TempoVal("Vivo", 120),
TempoVal("Ballad", 60),
TempoVal("Fast", 132),
TempoVal("Lively", 120),
TempoVal("Moderate", 112),
TempoVal("Slow", 60),
TempoVal("Very slow", 44),
TempoVal("With movement", 120),
TempoVal("Entrainant", 120),
TempoVal("Lent", 60),
TempoVal("Rapide", 132),
TempoVal("Regulier", 96),
TempoVal("Vif", 120),
TempoVal("Vite", 132),
TempoVal("Vivement", 176),
TempoVal("Bewegt", 112),
TempoVal("Langsam", 60),
TempoVal("Lebhaft", 120),
TempoVal("Mäßig", 112), // utf8!
TempoVal("Schnell", 132)
};
static bool tempoListInit = true;
static bool tempoListChanged = true;
static QList<TempoVal*> tempoL;
//---------------------------------------------------------
// EditTempo
//---------------------------------------------------------
EditTempo::EditTempo(QWidget* parent)
: QDialog(parent)
{
setupUi(this);
setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
if (tempoListInit) {
tempoListInit = false;
for (unsigned i = 0; i < sizeof(tempos)/sizeof(*tempos); ++i) {
tempoL.append(new TempoVal(tempos[i]));
}
}
int idx = 0;
foreach(TempoVal* v, tempoL) {
QListWidgetItem* item = new QListWidgetItem(v->name, tempoList);
item->setData(Qt::UserRole, idx++);
}
selectTempo(3);
connect(tempoText, SIGNAL(textChanged(const QString&)), SLOT(textChanged(const QString&)));
connect(tempoBPM, SIGNAL(valueChanged(double)), SLOT(bpmChanged(double)));
connect(tempoList, SIGNAL(currentRowChanged(int)), SLOT(selectTempo(int)));
connect(tempoList, SIGNAL(itemDoubleClicked(QListWidgetItem*)), SLOT(itemDoubleClicked(QListWidgetItem*)));
}
//---------------------------------------------------------
// itemDoubleClicked
//---------------------------------------------------------
void EditTempo::itemDoubleClicked(QListWidgetItem* item)
{
int idx = item->data(Qt::UserRole).toInt();
selectTempo(idx);
accept();
}
//---------------------------------------------------------
// selectTempo
//---------------------------------------------------------
void EditTempo::selectTempo(int n)
{
if (n < 0 || n >= tempoL.size())
return;
_text = tempoL[n]->name;
tempoText->setText(_text);
_bpm = tempoL[n]->bpm;
tempoBPM->setValue(_bpm);
}
//---------------------------------------------------------
// textChanged
//---------------------------------------------------------
void EditTempo::textChanged(const QString& s)
{
_text = s;
int idx = tempoList->currentItem()->data(Qt::UserRole).toInt();
tempoL[idx]->name = s;
tempoListChanged = true;
tempoList->currentItem()->setText(s);
}
//---------------------------------------------------------
// bpmChanged
//---------------------------------------------------------
void EditTempo::bpmChanged(double v)
{
_bpm = v;
int idx = tempoList->currentItem()->data(Qt::UserRole).toInt();
tempoL[idx]->bpm = v;
tempoListChanged = true;
}