/* Rosegarden A MIDI and audio sequencer and musical notation editor. This program is Copyright 2000-2008 Guillaume Laurent , Chris Cannam , Richard Bown The moral rights of Guillaume Laurent, Chris Cannam, and Richard Bown to claim authorship of this work have been asserted. Other copyrights also apply to some parts of this work. Please see the AUTHORS file and individual file headers for details. 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 2 of the License, or (at your option) any later version. See the file COPYING included with this distribution for more information. */ #include "DiatonicPitchChooser.h" #include #include #include "base/NotationRules.h" #include "base/NotationTypes.h" #include "gui/general/MidiPitchLabel.h" #include "PitchDragLabel.h" #include #include #include #include #include #include #include namespace Rosegarden { DiatonicPitchChooser::DiatonicPitchChooser(TQString title, TQWidget *parent, int defaultNote, int defaultPitch, int defaultOctave) : TQGroupBox(1, TQt::Horizontal, title, parent), m_defaultPitch(defaultPitch) { m_pitchDragLabel = new PitchDragLabel(this, defaultPitch); TQHBox *hbox = new TQHBox(this); hbox->setSpacing(6); m_step = new KComboBox( hbox ); m_step->setSizeLimit( 7 ); m_step->insertItem(i18n("C")); m_step->insertItem(i18n("D")); m_step->insertItem(i18n("E")); m_step->insertItem(i18n("F")); m_step->insertItem(i18n("G")); m_step->insertItem(i18n("A")); m_step->insertItem(i18n("B")); m_step->setCurrentItem(defaultNote); m_octave = new KComboBox( hbox ); m_octave->insertItem(i18n("-2")); m_octave->insertItem(i18n("-1")); m_octave->insertItem(i18n("0")); m_octave->insertItem(i18n("1")); m_octave->insertItem(i18n("2")); m_octave->insertItem(i18n("3")); m_octave->insertItem(i18n("4")); m_octave->insertItem(i18n("5")); m_octave->insertItem(i18n("6")); m_octave->insertItem(i18n("7")); m_octave->setCurrentItem(defaultOctave); m_accidental = new KComboBox( hbox ); m_accidental->insertItem(i18n("double flat")); m_accidental->insertItem(i18n("flat")); m_accidental->insertItem(i18n("natural")); m_accidental->insertItem(i18n("sharp")); m_accidental->insertItem(i18n("double sharp")); m_accidental->setCurrentItem(2); // default: natural m_pitchLabel = new TQLabel(TQString("%1").arg(getPitch()), hbox); m_pitchLabel->setMinimumWidth(40); connect(m_accidental, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotSetAccidental(int))); connect(m_octave, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotSetOctave(int))); connect(m_step, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotSetStep(int))); //connect(m_pitch, TQT_SIGNAL(valueChanged(int)), // this, TQT_SIGNAL(pitchChanged(int))); //connect(m_pitch, TQT_SIGNAL(valueChanged(int)), // this, TQT_SIGNAL(preview(int))); connect(m_pitchDragLabel, TQT_SIGNAL(pitchDragged(int,int,int)), this, TQT_SLOT(slotSetNote(int,int,int))); //connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int)), // this, TQT_SLOT(slotSetPitch(int))); connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int,int,int)), this, TQT_SLOT(slotSetNote(int,int,int))); //connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int)), // this, TQT_SIGNAL(pitchChanged(int))); connect(m_pitchDragLabel, TQT_SIGNAL(pitchDragged(int,int,int)), this, TQT_SIGNAL(noteChanged(int,int,int))); connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int,int,int)), this, TQT_SIGNAL(noteChanged(int,int,int))); connect(m_pitchDragLabel, TQT_SIGNAL(preview(int)), this, TQT_SIGNAL(preview(int))); } int DiatonicPitchChooser::getPitch() const { return 12 * m_octave->currentItem() + scale_Cmajor[m_step->currentItem()] + (m_accidental->currentItem() - 2); } int DiatonicPitchChooser::getAccidental() { return m_accidental->currentItem() - 2; } void DiatonicPitchChooser::slotSetPitch(int pitch) { if (m_pitchDragLabel->getPitch() != pitch) m_pitchDragLabel->slotSetPitch(pitch); m_octave->setCurrentItem((int)(((long) pitch) / 12)); int step = steps_Cmajor[pitch % 12]; m_step->setCurrentItem(step); int pitchChange = (pitch % 12) - scale_Cmajor[step]; m_accidental->setCurrentItem(pitchChange + 2); m_pitchLabel->setText(TQString("%1").arg(pitch)); update(); } void DiatonicPitchChooser::slotSetStep(int step) { if (m_step->currentItem() != step) m_step->setCurrentItem(step); std::cout << "slot_step called" << std::endl; setLabelsIfNeeded(); update(); } void DiatonicPitchChooser::slotSetOctave(int octave) { if (m_octave->currentItem() != octave) m_octave->setCurrentItem(octave); setLabelsIfNeeded(); update(); } /** input 0..4: doubleflat .. doublesharp */ void DiatonicPitchChooser::slotSetAccidental(int accidental) { if (m_accidental->currentItem() != accidental) m_accidental->setCurrentItem(accidental); setLabelsIfNeeded(); update(); } /** sets the m_pitchDragLabel and m_pitchLabel if needed */ void DiatonicPitchChooser::setLabelsIfNeeded() { //if (m_pitchDragLabel->) //{ m_pitchDragLabel->slotSetPitch(getPitch(), m_octave->currentItem(), m_step->currentItem()); //} m_pitchLabel->setText(TQString("%1").arg(getPitch())); } void DiatonicPitchChooser::slotSetNote(int pitch, int octave, int step) { //if (m_pitch->value() != p) // m_pitch->setValue(p); if (m_pitchDragLabel->getPitch() != pitch) m_pitchDragLabel->slotSetPitch(pitch, octave, step); m_octave->setCurrentItem(octave); m_step->setCurrentItem(step); int pitchOffset = pitch - (octave * 12 + scale_Cmajor[step]); m_accidental->setCurrentItem(pitchOffset + 2); //MidiPitchLabel pl(p); m_pitchLabel->setText(TQString("%1").arg(pitch)); update(); } void DiatonicPitchChooser::slotResetToDefault() { slotSetPitch(m_defaultPitch); } int DiatonicPitchChooser::getOctave() const { return m_octave->currentItem(); } int DiatonicPitchChooser::getStep() const { return m_step->currentItem(); } } #include "DiatonicPitchChooser.moc"