diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-09-16 21:26:57 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-09-16 21:26:57 -0700 |
commit | 82ba45b3f22a761df6e06ff6a540b91f1aa20fdc (patch) | |
tree | 8b8110a87c488ab3f1b5d5b178fdbb4245abb168 /src/MIDIDeviceSheet.h | |
parent | 1c58d3924a9ff4a57aee3e3377d473fed7e221f5 (diff) | |
download | sekaiju-82ba45b3f22a761df6e06ff6a540b91f1aa20fdc.tar.gz sekaiju-82ba45b3f22a761df6e06ff6a540b91f1aa20fdc.tar.bz2 sekaiju-82ba45b3f22a761df6e06ff6a540b91f1aa20fdc.zip |
New feature: "MIDI thru" is implemented by bindings from
input ports to output ports which is user-configurable and
stored in the .ini file. Tracks no longer perform "MIDI thru",
but only capture and playback.
Diffstat (limited to 'src/MIDIDeviceSheet.h')
-rw-r--r-- | src/MIDIDeviceSheet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/MIDIDeviceSheet.h b/src/MIDIDeviceSheet.h index 4476561..b797808 100644 --- a/src/MIDIDeviceSheet.h +++ b/src/MIDIDeviceSheet.h @@ -23,6 +23,7 @@ #include "MIDIInDevicePage.h"
#include "MIDIOutDevicePage.h"
+#include "MIDIThruBindingPage.h"
#include "MIDIInstDefNormPage.h"
#include "MIDIInstDefDrumPage.h"
@@ -33,6 +34,7 @@ class CMIDIDeviceSheet : public CPropertySheet { public:
CMIDIInDevicePage m_theMIDIInDevicePage; // MIDI入力デバイスページ
CMIDIOutDevicePage m_theMIDIOutDevicePage; // MIDI出力デバイスページ
+ CMIDIThruBindingPage m_theMIDIThruBindingPage; // MIDI入出関係(ループ)ページ
CMIDIInstDefNormPage m_theMIDIInstDefNormPage; // MIDIインストゥルメント(通常)ページ
CMIDIInstDefDrumPage m_theMIDIInstDefDrumPage; // MIDIインストゥルメント(ドラム)ページ
//--------------------------------------------------------------------------
|