mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
87344de7d4
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1850 b45a01b8-16f6-495d-af2f-9b41ad6348cc
45 lines
783 B
C++
45 lines
783 B
C++
#ifndef _HWA_PLUGIN_H_
|
|
#define _HWA_PLUGIN_H_
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
#include <QWidget>
|
|
#include <QFrame>
|
|
class QVBoxLayout;
|
|
|
|
#include <PluginInterface.h>
|
|
|
|
#include <QDebug>
|
|
|
|
class SMPlayer;
|
|
|
|
class SMPlayerPluginWidget: public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SMPlayerPluginWidget(QWidget* parent, Qt::WindowFlags flags = 0 );
|
|
~SMPlayerPluginWidget();
|
|
|
|
protected:
|
|
SMPlayer* player;
|
|
QVBoxLayout* lay;
|
|
};
|
|
|
|
class SMPlayerPlugin: public QObject, public PluginInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(PluginInterface)
|
|
|
|
public slots:
|
|
|
|
virtual QString pluginDescription() const ;
|
|
virtual QString pluginName() const ;
|
|
|
|
virtual QWidget* pluginWidget(QWidget * parent = 0) ;
|
|
|
|
};
|
|
|
|
#endif
|