mirror of
https://github.com/LMMS/lmms.git
synced 2026-02-24 10:17:59 -05:00
* Move m_key member of Effect into Plugin * Pass key to Instrument ctors and instantiaters * Add pluginKeys to all plugin selector widgets, and let them pass the keys when instantiating the instruments; or, if the keys must be passed over threads, pass the keys to the Engine using `Engine::setDndPluginKey()` * As instrument plugin libraries now also need to get their key passed, their second argument, which was always the same as the first, is now used to pass the sub plugin keys. This affects *all* instrument plugins. * Plugin.h: Add more virtuals to `SubPluginFeatures` in order to draw logos and images into instrument selector widgets * LadspaSubPluginFeatures: Implement the `displayName` virtual because the new behaviour to resolve displayNames is to first look at the SubPluginFeatures, which, without override, returns the superior plugin's name (Plugin.cpp) Additional: * PluginFactory.h: Allow setting up search paths without discovering plugins yet * Plugin.h: Add full documentation (should be checked)
81 lines
1.9 KiB
C++
81 lines
1.9 KiB
C++
/*
|
|
* Ladspa2LMMS.h - class that identifies and instantiates LADSPA effects
|
|
* for use with LMMS
|
|
*
|
|
* Copyright (c) 2005-2008 Danny McRae <khjklujn@netscape.net>
|
|
*
|
|
* This file is part of LMMS - https://lmms.io
|
|
*
|
|
* 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 LADSPA_2_LMMS_H
|
|
#define LADSPA_2_LMMS_H
|
|
|
|
|
|
#include "LadspaManager.h"
|
|
|
|
|
|
//! Class responsible for sorting found plugins (by LadspaManager)
|
|
//! into categories
|
|
class LMMS_EXPORT Ladspa2LMMS : public LadspaManager
|
|
{
|
|
public:
|
|
|
|
inline l_sortable_plugin_t getInstruments()
|
|
{
|
|
return( m_instruments );
|
|
}
|
|
|
|
inline l_sortable_plugin_t getValidEffects()
|
|
{
|
|
return( m_validEffects );
|
|
}
|
|
|
|
inline l_sortable_plugin_t getInvalidEffects()
|
|
{
|
|
return( m_invalidEffects );
|
|
}
|
|
|
|
inline l_sortable_plugin_t getAnalysisTools()
|
|
{
|
|
return( m_analysisTools );
|
|
}
|
|
|
|
inline l_sortable_plugin_t getOthers()
|
|
{
|
|
return( m_otherPlugins );
|
|
}
|
|
|
|
QString getShortName( const ladspa_key_t & _key );
|
|
|
|
private:
|
|
Ladspa2LMMS();
|
|
virtual ~Ladspa2LMMS();
|
|
|
|
l_sortable_plugin_t m_instruments;
|
|
l_sortable_plugin_t m_validEffects;
|
|
l_sortable_plugin_t m_invalidEffects;
|
|
l_sortable_plugin_t m_analysisTools;
|
|
l_sortable_plugin_t m_otherPlugins;
|
|
|
|
friend class LmmsCore;
|
|
|
|
} ;
|
|
|
|
#endif
|