|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //------------------------------------------------------------------------
- // Project : VST SDK
- //
- // Category : Interfaces
- // Filename : pluginterfaces/vst/ivstmidilearn.h
- // Created by : Steinberg, 11/2018
- // Description : VST MIDI Learn
- //
- //-----------------------------------------------------------------------------
- // This file is part of a Steinberg SDK. It is subject to the license terms
- // in the LICENSE file found in the top-level directory of this distribution
- // and at www.steinberg.net/sdklicenses.
- // No part of the SDK, including this file, may be copied, modified, propagated,
- // or distributed except according to the terms contained in the LICENSE file.
- //-----------------------------------------------------------------------------
-
- #pragma once
-
- #include "pluginterfaces/base/funknown.h"
- #include "pluginterfaces/vst/vsttypes.h"
-
- //------------------------------------------------------------------------
- namespace Steinberg {
- namespace Vst {
-
- //------------------------------------------------------------------------
- /** MIDI Learn Interface.
- \ingroup vstIPlug vst3612
- - [plug imp]
- - [extends IEditController]
- - [released: 3.6.12]
- - [optional]
-
- If this interface is implemented by the edit controller, the host will call this method whenever
- there is live MIDI-CC input for the plug-in. This way the plug-in can change it's MIDI-CC parameter
- mapping and inform the host via the IComponentHandler::restartComponent with the
- kMidiCCAssignmentChanged flag.
- Use this if you want to implement custom MIDI-Learn functionality in your plug-in.
- */
- //------------------------------------------------------------------------
- class IMidiLearn : public FUnknown
- {
- public:
- /** Called on live input MIDI-CC change associated to a given bus index and MIDI channel */
- virtual tresult PLUGIN_API onLiveMIDIControllerInput (int32 busIndex, int16 channel,
- CtrlNumber midiCC) = 0;
-
- //------------------------------------------------------------------------
- static const FUID iid;
- };
-
- DECLARE_CLASS_IID (IMidiLearn, 0x6B2449CC, 0x419740B5, 0xAB3C79DA, 0xC5FE5C86)
-
-
- //------------------------------------------------------------------------
- } // namespace Vst
- } // namespace Steinberg
|