~ubuntu-branches/ubuntu/hardy/lmms/hardy

« back to all changes in this revision

Viewing changes to plugins/ladspa_effect/ladspa_subplugin_features.h

  • Committer: Bazaar Package Importer
  • Author(s): Tobias Doerffel
  • Date: 2007-09-17 15:00:24 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070917150024-mo0zk4ks81jawqii
Tags: 0.3.0-1ubuntu1
* Resynchronized with Debian (LP: #139759, LP: #90806, LP: #102639,
  LP: #113447, LP: #121172, LP: #124890)
* reverted changes from 0.2.1-1.1ubuntu1 as upstream merged/included them

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * ladspa_subplugin_features.h - derivation from
 
3
 *                               plugin::descriptor::subPluginFeatures for
 
4
 *                               hosting LADSPA-plugins
 
5
 *
 
6
 * Copyright (c) 2006-2007 Danny McRae <khjklujn/at/users.sourceforge.net>
 
7
 * Copyright (c) 2006-2007 Tobias Doerffel <tobydox/at/users.sourceforge.net>
 
8
 * 
 
9
 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
 
10
 *
 
11
 * This program is free software; you can redistribute it and/or
 
12
 * modify it under the terms of the GNU General Public
 
13
 * License as published by the Free Software Foundation; either
 
14
 * version 2 of the License, or (at your option) any later version.
 
15
 *
 
16
 * This program is distributed in the hope that it will be useful,
 
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
19
 * General Public License for more details.
 
20
 *
 
21
 * You should have received a copy of the GNU General Public
 
22
 * License along with this program (see COPYING); if not, write to the
 
23
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
24
 * Boston, MA 02110-1301 USA.
 
25
 *
 
26
 */
 
27
 
 
28
 
 
29
#ifndef _LADSPA_SUBPLUGIN_FEATURES_H
 
30
#define _LADSPA_SUBPLUGIN_FEATURES_H
 
31
 
 
32
#include "plugin.h"
 
33
#include "ladspa_base.h"
 
34
 
 
35
 
 
36
class ladspaSubPluginFeatures : public plugin::descriptor::subPluginFeatures
 
37
{
 
38
public:
 
39
        ladspaSubPluginFeatures( plugin::pluginTypes _type );
 
40
 
 
41
        virtual void fillDescriptionWidget( QWidget * _parent,
 
42
                                                        const key * _key );
 
43
 
 
44
        virtual void listSubPluginKeys( plugin::descriptor * _desc,
 
45
                                                                keyList & _kl );
 
46
 
 
47
} ;
 
48
 
 
49
#endif