You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rosegarden/src/gui/dialogs/EventFilterDialog.cpp

475 lines
16 KiB

/*
Rosegarden
A MIDI and audio sequencer and musical notation editor.
This program is Copyright 2000-2008
Guillaume Laurent <glaurent@telegraph-road.org>,
Chris Cannam <cannam@all-day-breakfast.com>,
Richard Bown <richard.bown@ferventsoftware.com>
This file is Copyright 2003-2006
D. Michael McIntyre <dmmcintyr@users.sourceforge.net>
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 "EventFilterDialog.h"
#include "misc/Debug.h"
#include "base/BaseProperties.h"
#include "base/Event.h"
#include "base/NotationTypes.h"
#include "base/BasicQuantizer.h"
#include "gui/dialogs/PitchPickerDialog.h"
#include "gui/editors/notation/NotationStrings.h"
#include "gui/editors/notation/NotePixmapFactory.h"
#include "document/ConfigGroups.h"
#include <tdeapplication.h>
#include <tdeconfig.h>
#include <kdialogbase.h>
#include <tdelocale.h>
#include <tqcheckbox.h>
#include <tqcombobox.h>
#include <tqdialog.h>
#include <tqframe.h>
#include <tqgroupbox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqpixmap.h>
#include <tqpushbutton.h>
#include <tqsizepolicy.h>
#include <tqspinbox.h>
#include <tqstring.h>
#include <tqtooltip.h>
#include <tqvbox.h>
#include <tqwidget.h>
namespace Rosegarden
{
EventFilterDialog::EventFilterDialog(TQWidget* parent)
: KDialogBase(parent, "eventfilerdialog", true, i18n("Event Filter"), Ok | Cancel, Ok),
m_standardQuantizations(BasicQuantizer::getStandardQuantizations())
{
cfg = kapp->config();
initDialog();
}
EventFilterDialog::~EventFilterDialog()
{
// nothing here
}
void
EventFilterDialog::initDialog()
{
TQVBox* mainWidget = makeVBoxMainWidget();
//----------[ Note Filter Widgets ]-------------------------
// Frame
TQGroupBox* noteFrame = new TQGroupBox(i18n("Note Events"), mainWidget);
TQGridLayout* noteFrameLayout = new TQGridLayout(noteFrame, 1, 1, 20, 6);
// Labels
TQLabel* pitchFromLabel = new TQLabel(i18n("lowest:"), noteFrame);
noteFrameLayout->addWidget(pitchFromLabel, 0, 2);
TQLabel* pitchToLabel = new TQLabel(i18n("highest:"), noteFrame);
noteFrameLayout->addWidget(pitchToLabel, 0, 4);
TQLabel* pitchLabel = new TQLabel(i18n("Pitch:"), noteFrame);
noteFrameLayout->addWidget(pitchLabel, 1, 1);
TQLabel* velocityLabel = new TQLabel(i18n("Velocity:"), noteFrame);
noteFrameLayout->addWidget(velocityLabel, 2, 1);
TQLabel* durationLabel = new TQLabel(i18n("Duration:"), noteFrame);
noteFrameLayout->addWidget(durationLabel, 3, 1);
// Include Boxes
m_notePitchIncludeComboBox = new TQComboBox(0, noteFrame);
m_notePitchIncludeComboBox->insertItem(i18n("include"));
m_notePitchIncludeComboBox->insertItem(i18n("exclude"));
cfg->setGroup(EventFilterDialogConfigGroup);
m_notePitchIncludeComboBox->setCurrentItem(cfg->readBoolEntry("pitchinclude", 0));
noteFrameLayout->addWidget(m_notePitchIncludeComboBox, 1, 0);
m_noteVelocityIncludeComboBox = new TQComboBox(0, noteFrame);
m_noteVelocityIncludeComboBox->insertItem(i18n("include"));
m_noteVelocityIncludeComboBox->insertItem(i18n("exclude"));
cfg->setGroup(EventFilterDialogConfigGroup);
m_noteVelocityIncludeComboBox->setCurrentItem(cfg->readBoolEntry("velocityinclude", 0));
noteFrameLayout->addWidget(m_noteVelocityIncludeComboBox, 2, 0);
m_noteDurationIncludeComboBox = new TQComboBox(0, noteFrame);
m_noteDurationIncludeComboBox->insertItem(i18n("include"));
m_noteDurationIncludeComboBox->insertItem(i18n("exclude"));
cfg->setGroup(EventFilterDialogConfigGroup);
m_noteDurationIncludeComboBox->setCurrentItem(cfg->readBoolEntry("durationinclude", 0));
noteFrameLayout->addWidget(m_noteDurationIncludeComboBox, 3, 0);
// Pitch From
m_pitchFromSpinBox = new TQSpinBox(noteFrame);
m_pitchFromSpinBox->setMaxValue(127);
cfg->setGroup(EventFilterDialogConfigGroup);
m_pitchFromSpinBox->setValue(cfg->readUnsignedNumEntry("pitchfrom", 0));
noteFrameLayout->addWidget(m_pitchFromSpinBox, 1, 2);
connect(m_pitchFromSpinBox, TQT_SIGNAL(valueChanged(int)),
TQT_SLOT(slotPitchFromChanged(int)));
m_pitchFromChooserButton = new TQPushButton(i18n("edit"), noteFrame);
m_pitchFromChooserButton->setSizePolicy(TQSizePolicy((TQSizePolicy::SizeType)0,
(TQSizePolicy::SizeType)0, 0, 0, m_pitchFromChooserButton->
sizePolicy().hasHeightForWidth()));
TQToolTip::add
(m_pitchFromChooserButton, i18n("choose a pitch using a staff"));
noteFrameLayout->addWidget(m_pitchFromChooserButton, 1, 3);
connect(m_pitchFromChooserButton, TQT_SIGNAL(clicked()),
TQT_SLOT(slotPitchFromChooser()));
// Pitch To
m_pitchToSpinBox = new TQSpinBox(noteFrame);
m_pitchToSpinBox->setMaxValue(127);
cfg->setGroup(EventFilterDialogConfigGroup);
m_pitchToSpinBox->setValue(cfg->readUnsignedNumEntry("pitchto", 127));
noteFrameLayout->addWidget(m_pitchToSpinBox, 1, 4);
connect(m_pitchToSpinBox, TQT_SIGNAL(valueChanged(int)),
TQT_SLOT(slotPitchToChanged(int)));
m_pitchToChooserButton = new TQPushButton(i18n("edit"), noteFrame);
TQToolTip::add
(m_pitchToChooserButton, i18n("choose a pitch using a staff"));
noteFrameLayout->addWidget(m_pitchToChooserButton, 1, 5);
connect(m_pitchToChooserButton, TQT_SIGNAL(clicked()),
TQT_SLOT(slotPitchToChooser()));
// Velocity From/To
m_velocityFromSpinBox = new TQSpinBox(noteFrame);
m_velocityFromSpinBox->setMaxValue(127);
cfg->setGroup(EventFilterDialogConfigGroup);
m_velocityFromSpinBox->setValue(cfg->readUnsignedNumEntry("velocityfrom", 0));
noteFrameLayout->addWidget(m_velocityFromSpinBox, 2, 2);
connect(m_velocityFromSpinBox, TQT_SIGNAL(valueChanged(int)),
TQT_SLOT(slotVelocityFromChanged(int)));
m_velocityToSpinBox = new TQSpinBox(noteFrame);
m_velocityToSpinBox->setMaxValue(127);
cfg->setGroup(EventFilterDialogConfigGroup);
m_velocityToSpinBox->setValue(cfg->readUnsignedNumEntry("velocityto", 127));
noteFrameLayout->addWidget( m_velocityToSpinBox, 2, 4 );
connect(m_velocityToSpinBox, TQT_SIGNAL(valueChanged(int)),
TQT_SLOT(slotVelocityToChanged(int)));
// Duration From/To
m_noteDurationFromComboBox = new TQComboBox(0, noteFrame);
m_noteDurationFromComboBox->insertItem(i18n("longest"));
noteFrameLayout->addWidget(m_noteDurationFromComboBox, 3, 2);
connect(m_noteDurationFromComboBox, TQT_SIGNAL(activated(int)),
TQT_SLOT(slotDurationFromChanged(int)));
m_noteDurationToComboBox = new TQComboBox(0, noteFrame);
m_noteDurationToComboBox->insertItem(i18n("longest"));
noteFrameLayout->addWidget(m_noteDurationToComboBox, 3, 4);
connect(m_noteDurationToComboBox, TQT_SIGNAL(activated(int)),
TQT_SLOT(slotDurationToChanged(int)));
populateDurationCombos();
//---------[ Buttons ]--------------------------------------
TQFrame* privateLayoutWidget = new TQFrame(mainWidget);
TQGridLayout* buttonLayout = new TQGridLayout(privateLayoutWidget, 1, 1, 20, 6);
m_buttonAll = new TQPushButton(i18n("Include all"), privateLayoutWidget);
m_buttonAll->setAutoDefault(true);
TQToolTip::add
(m_buttonAll, i18n("Include entire range of values"));
buttonLayout->addWidget( m_buttonAll, 0, 0 );
m_buttonNone = new TQPushButton(i18n("Exclude all"), privateLayoutWidget);
m_buttonNone->setAutoDefault(true);
TQToolTip::add
(m_buttonNone, i18n("Exclude entire range of values"));
buttonLayout->addWidget( m_buttonNone, 0, 1 );
connect(m_buttonAll, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotToggleAll()));
connect(m_buttonNone, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotToggleNone()));
}
void
EventFilterDialog::populateDurationCombos()
{
TQPixmap noMap = NotePixmapFactory::toTQPixmap
(NotePixmapFactory::makeToolbarPixmap("menu-no-note"));
for (unsigned int i = 0; i < m_standardQuantizations.size(); ++i) {
timeT time = m_standardQuantizations[i];
timeT error = 0;
TQString label = NotationStrings::makeNoteMenuLabel(time, true, error);
TQPixmap pmap = NotePixmapFactory::toTQPixmap
(NotePixmapFactory::makeNoteMenuPixmap(time, error));
m_noteDurationFromComboBox->insertItem(error ? noMap : pmap, label);
m_noteDurationToComboBox ->insertItem(error ? noMap : pmap, label);
}
m_noteDurationFromComboBox->insertItem(noMap, i18n("shortest"));
m_noteDurationToComboBox->insertItem(noMap, i18n("shortest"));
cfg->setGroup(EventFilterDialogConfigGroup);
m_noteDurationFromComboBox->setCurrentItem(
cfg->readUnsignedNumEntry("durationfrom", 0));
m_noteDurationToComboBox->setCurrentItem(
cfg->readUnsignedNumEntry("durationto", (m_noteDurationToComboBox->count() - 1)));
}
void
EventFilterDialog::slotToggleAll()
{
RG_DEBUG << "EventFilterDialog::slotToggleAll()" << endl;
m_pitchFromSpinBox ->setValue(0);
m_pitchToSpinBox ->setValue(127);
m_velocityFromSpinBox ->setValue(0);
m_velocityToSpinBox ->setValue(127);
m_noteDurationFromComboBox ->setCurrentItem(11); // hard coded; should be variable
m_noteDurationToComboBox ->setCurrentItem(0); // 0 = unlimited; 11 = 0
}
void
EventFilterDialog::slotToggleNone()
{
RG_DEBUG << "EventFilterDialog::slotToggleNone()" << endl;
m_pitchFromSpinBox ->setValue(0);
m_pitchToSpinBox ->setValue(0);
m_velocityFromSpinBox ->setValue(0);
m_velocityToSpinBox ->setValue(0);
m_noteDurationFromComboBox ->setCurrentItem(11);
m_noteDurationToComboBox ->setCurrentItem(11);
}
void
EventFilterDialog::slotOk()
{
cfg->setGroup(EventFilterDialogConfigGroup);
cfg->writeEntry("pitchinclude", m_notePitchIncludeComboBox->currentItem());
cfg->writeEntry("pitchfrom", m_pitchFromSpinBox->value());
cfg->writeEntry("pitchto", m_pitchToSpinBox->value());
cfg->writeEntry("velocityinclude", m_noteVelocityIncludeComboBox->currentItem());
cfg->writeEntry("velocityfrom", m_velocityFromSpinBox->value());
cfg->writeEntry("velocityto", m_velocityToSpinBox->value());
cfg->writeEntry("durationinclude", m_noteDurationIncludeComboBox->currentItem());
cfg->writeEntry("durationfrom", m_noteDurationFromComboBox->currentItem());
cfg->writeEntry("durationto", m_noteDurationToComboBox->currentItem());
accept();
}
void
EventFilterDialog::slotPitchFromChanged(int pitch)
{
if (pitch > m_pitchToSpinBox->value())
m_pitchToSpinBox->setValue(pitch);
}
void
EventFilterDialog::slotPitchToChanged(int pitch)
{
if (pitch < m_pitchFromSpinBox->value())
m_pitchFromSpinBox->setValue(pitch);
}
void
EventFilterDialog::slotVelocityFromChanged(int velocity)
{
if (velocity > m_velocityToSpinBox->value())
m_velocityToSpinBox->setValue(velocity);
}
void
EventFilterDialog::slotVelocityToChanged(int velocity)
{
if (velocity < m_velocityFromSpinBox->value())
m_velocityFromSpinBox->setValue(velocity);
}
void
EventFilterDialog::slotDurationFromChanged(int index)
{
if (index < m_noteDurationToComboBox->currentItem())
m_noteDurationToComboBox->setCurrentItem(index);
}
void
EventFilterDialog::slotDurationToChanged(int index)
{
if (index > m_noteDurationFromComboBox->currentItem())
m_noteDurationFromComboBox->setCurrentItem(index);
}
void
EventFilterDialog::slotPitchFromChooser()
{
PitchPickerDialog dialog(this, m_pitchFromSpinBox->value(), i18n("Lowest pitch"));
if (dialog.exec() == TQDialog::Accepted) {
m_pitchFromSpinBox->setValue(dialog.getPitch());
}
}
void
EventFilterDialog::slotPitchToChooser()
{
PitchPickerDialog dialog(this, m_pitchToSpinBox->value(), i18n("Highest pitch"));
if (dialog.exec() == TQDialog::Accepted) {
m_pitchToSpinBox->setValue(dialog.getPitch());
}
}
long
EventFilterDialog::getDurationFromIndex(int index)
{
switch (index) {
// 0
case 11:
return 0;
// 1/96
case 10:
return long(Note(Note::SixtyFourthNote).getDuration() / 3);
// 1/64
case 9 :
return long(Note(Note::SixtyFourthNote).getDuration());
// 1/48
case 8 :
return long(Note(Note::ThirtySecondNote).getDuration() / 3);
// 1/32
case 7 :
return long(Note(Note::ThirtySecondNote).getDuration());
// 1/24
case 6 :
return long(Note(Note::SixteenthNote).getDuration() / 3);
// 1/16
case 5 :
return long(Note(Note::SixteenthNote).getDuration());
// 1/8
case 4 :
return long(Note(Note::EighthNote).getDuration());
// 1/4
case 3 :
return long(Note(Note::QuarterNote).getDuration());
// 1/2
case 2 :
return long(Note(Note::HalfNote).getDuration());
// 1/1
case 1 :
return long(Note(Note::WholeNote).getDuration());
// unlimited
case 0 :
return LONG_MAX;
}
// failsafe
return LONG_MAX;
}
void
EventFilterDialog::invert(EventFilterDialog::filterRange &foo)
{
long c = foo.first;
foo.first = foo.second;
foo.second = c;
}
EventFilterDialog::filterRange
EventFilterDialog::getPitch()
{
EventFilterDialog::filterRange foo;
foo.first = m_pitchFromSpinBox->value();
foo.second = m_pitchToSpinBox ->value();
if (!pitchIsInclusive())
invert(foo);
return foo;
}
EventFilterDialog::filterRange
EventFilterDialog::getVelocity()
{
EventFilterDialog::filterRange foo;
foo.first = m_velocityFromSpinBox->value();
foo.second = m_velocityToSpinBox ->value();
if (!velocityIsInclusive())
invert(foo);
return foo;
}
EventFilterDialog::filterRange
EventFilterDialog::getDuration()
{
EventFilterDialog::filterRange foo;
foo.first = getDurationFromIndex(m_noteDurationFromComboBox->currentItem());
foo.second = getDurationFromIndex(m_noteDurationToComboBox ->currentItem());
if (!durationIsInclusive())
invert(foo);
return foo;
}
bool
EventFilterDialog::keepEvent(Event* const &e)
{
if ((*e).isa(Note::EventType)) {
long property = 0;
// pitch
(*e).get<Int>(BaseProperties::PITCH, property);
if (!eventInRange(getPitch(), property)) {
RG_DEBUG << "EventFilterDialog::keepEvent(): rejecting event; pitch " << property
<< " out of range." << endl;
return false;
}
property = 0;
// velocity
(*e).get<Int>(BaseProperties::VELOCITY, property);
if (!EventFilterDialog::eventInRange(getVelocity(), property)) {
RG_DEBUG << "EventFilterDialog::keepEvent(): rejecting event; velocity " << property
<< " out of range." << endl;
return false;
}
property = 0;
// duration
property = (*e).getNotationDuration();
if (!EventFilterDialog::eventInRange(getDuration(), property)) {
RG_DEBUG << "EventFilterDialog::keepEvent(): rejecting event; duration " << property
<< " out of range." << endl;
return false;
}
property = 0;
return true;
}
return false;
}
}
#include "EventFilterDialog.moc"