mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-10 10:10:02 -04:00
Moved baseNoteModel from InstrumentTrack class to MidiEventProcessor class in order to make Piano class independent from InstrumentTrack class (so it can be used by other classes as well). Furthermore did various cleanups and coding style improvements.
85 lines
2.1 KiB
C++
85 lines
2.1 KiB
C++
/*
|
|
* midi_controller.h - A controller to receive MIDI control-changes
|
|
*
|
|
* Copyright (c) 2008 Paul Giblock <drfaygo/at/gmail.com>
|
|
*
|
|
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
|
|
*
|
|
* 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.
|
|
*
|
|
* 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 (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef _MIDI_CONTROLLER_H
|
|
#define _MIDI_CONTROLLER_H
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
#include "automatable_model.h"
|
|
#include "controller.h"
|
|
#include "midi_event_processor.h"
|
|
#include "midi_port.h"
|
|
|
|
|
|
class midiPort;
|
|
|
|
|
|
class midiController : public controller, public MidiEventProcessor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
midiController( model * _parent );
|
|
virtual ~midiController();
|
|
|
|
virtual void processInEvent( const midiEvent & _me,
|
|
const midiTime & _time );
|
|
|
|
virtual void processOutEvent( const midiEvent& _me,
|
|
const midiTime & _time)
|
|
{
|
|
// No output yet (TODO?)
|
|
}
|
|
|
|
virtual void saveSettings( QDomDocument & _doc, QDomElement & _this );
|
|
virtual void loadSettings( const QDomElement & _this );
|
|
virtual QString nodeName( void ) const;
|
|
|
|
// Used by controllerConnectionDialog to copy
|
|
void subscribeReadablePorts( const midiPort::map & _map );
|
|
|
|
|
|
public slots:
|
|
virtual controllerDialog * createDialog( QWidget * _parent );
|
|
void updateName( void );
|
|
|
|
|
|
protected:
|
|
// The internal per-controller get-value function
|
|
virtual float value( int _offset );
|
|
|
|
|
|
midiPort m_midiPort;
|
|
|
|
|
|
float m_lastValue;
|
|
|
|
friend class controllerConnectionDialog;
|
|
friend class autoDetectMidiController;
|
|
|
|
} ;
|
|
|
|
|
|
#endif
|