summaryrefslogtreecommitdiffstats
path: root/kaffeine/src/input/dvb/plugins/stream/kaffeinedvbplugin.h
blob: f11239776ab8f7c20da53d34b66be87690e2b333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * kaffeinedvbplugin.h
 *
 * Copyright (C) 2006 Christophe Thommeret <hftom@free.fr>
 *
 * 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; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef KAFFEINEDVBPLUGIN_H
#define KAFFEINEDVBPLUGIN_H

#include <qpopupmenu.h>
#include <qstring.h>

#include <kparts/part.h>
#include <kconfig.h>

/*
 * Base-Class for Kaffeine DVB plugins.
 */

class KDE_EXPORT KaffeineDvbPlugin : public KParts::Part
{
	Q_OBJECT
public:
	KaffeineDvbPlugin(QObject* parent, const char* name);
	virtual ~KaffeineDvbPlugin();
	virtual QString pluginName() { return QString(); }

	// returns a "handle".
	virtual void* init( int /*sid*/ , int /*anum*/, int /*tnum*/, int /*fta*/ ) { return NULL; }

	virtual void process( void* /*handle*/, unsigned char* /*buf*/, int /*len*/ ) {};
	virtual void close( void* /*handle*/ ) {};

public slots:
	virtual void configDialog() {};
};

#endif /* KAFFEINEDVBPLUGIN_H */