mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-15 13:00:02 +02:00
80 lines
3.1 KiB
C++
80 lines
3.1 KiB
C++
// yabridge: a Wine VST bridge
|
|
// Copyright (C) 2020-2021 Robbert van der Helm
|
|
//
|
|
// 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 3 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. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#pragma once
|
|
|
|
#include "../vst3.h"
|
|
|
|
class Vst3ComponentHandlerProxyImpl : public Vst3ComponentHandlerProxy {
|
|
public:
|
|
Vst3ComponentHandlerProxyImpl(
|
|
Vst3Bridge& bridge,
|
|
Vst3ComponentHandlerProxy::ConstructArgs&& args);
|
|
|
|
/**
|
|
* We'll override the query interface to log queries for interfaces we do
|
|
* not (yet) support.
|
|
*/
|
|
tresult PLUGIN_API queryInterface(const Steinberg::TUID _iid,
|
|
void** obj) override;
|
|
|
|
// From `IComponentHandler`
|
|
tresult PLUGIN_API beginEdit(Steinberg::Vst::ParamID id) override;
|
|
tresult PLUGIN_API
|
|
performEdit(Steinberg::Vst::ParamID id,
|
|
Steinberg::Vst::ParamValue valueNormalized) override;
|
|
tresult PLUGIN_API endEdit(Steinberg::Vst::ParamID id) override;
|
|
tresult PLUGIN_API restartComponent(int32 flags) override;
|
|
|
|
// From `IComponentHandler2`
|
|
tresult PLUGIN_API setDirty(TBool state) override;
|
|
tresult PLUGIN_API requestOpenEditor(Steinberg::FIDString name) override;
|
|
tresult PLUGIN_API startGroupEdit() override;
|
|
tresult PLUGIN_API finishGroupEdit() override;
|
|
|
|
// From `IComponentHandler3`
|
|
Steinberg::Vst::IContextMenu* PLUGIN_API
|
|
createContextMenu(Steinberg::IPlugView* plugView,
|
|
const Steinberg::Vst::ParamID* paramID) override;
|
|
|
|
// From `IComponentHandlerBusActivation`
|
|
tresult PLUGIN_API requestBusActivation(Steinberg::Vst::MediaType type,
|
|
Steinberg::Vst::BusDirection dir,
|
|
int32 index,
|
|
TBool state) override;
|
|
|
|
// From `IProgress`
|
|
tresult PLUGIN_API start(ProgressType type,
|
|
const Steinberg::tchar* optionalDescription,
|
|
ID& outID) override;
|
|
tresult PLUGIN_API update(ID id,
|
|
Steinberg::Vst::ParamValue normValue) override;
|
|
tresult PLUGIN_API finish(ID id) override;
|
|
|
|
// From `IUnitHandler`
|
|
tresult PLUGIN_API
|
|
notifyUnitSelection(Steinberg::Vst::UnitID unitId) override;
|
|
tresult PLUGIN_API
|
|
notifyProgramListChange(Steinberg::Vst::ProgramListID listId,
|
|
int32 programIndex) override;
|
|
|
|
// From `IUnitHandler2`
|
|
tresult PLUGIN_API notifyUnitByBusChange() override;
|
|
|
|
private:
|
|
Vst3Bridge& bridge;
|
|
};
|