Renamed MIDI and audio related classes/files to match new style

Renamed all MIDI and audio related classes/files to match new style.
Additionally various cleanups.
This commit is contained in:
Tobias Doerffel
2009-08-13 00:39:26 +02:00
parent edc2cae4c2
commit b8ebfbd06a
73 changed files with 1374 additions and 1516 deletions

View File

@@ -33,9 +33,8 @@
#include "ControllerConnectionDialog.h"
#include "ControllerConnection.h"
#include "MidiController.h"
#include "midi_client.h"
#include "midi_port_menu.h"
#include "midi.h"
#include "MidiClient.h"
#include "MidiPortMenu.h"
#include "lcd_spinbox.h"
#include "led_checkbox.h"
#include "combobox.h"
@@ -158,9 +157,9 @@ ControllerConnectionDialog::ControllerConnectionDialog( QWidget * _parent,
// when using with non-raw-clients we can provide buttons showing
// our port-menus when being clicked
if( !engine::getMixer()->getMidiClient()->isRaw() )
if( !engine::getMixer()->midiClient()->isRaw() )
{
m_readablePorts = new midiPortMenu( midiPort::Input );
m_readablePorts = new MidiPortMenu( MidiPort::Input );
connect( m_readablePorts, SIGNAL( triggered( QAction * ) ),
this, SLOT( enableAutoDetect( QAction * ) ) );
toolButton * rp_btn = new toolButton( m_midiGroupBox );