mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
b748f1a3f1
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4993 b45a01b8-16f6-495d-af2f-9b41ad6348cc
20 lines
503 B
C++
20 lines
503 B
C++
// This class receives async-ed signals from the plugin notifier,
|
|
// and executes GUI requests.
|
|
//
|
|
// It is never called directly: it is called by Qt signal-received callback,
|
|
// in the main GUI thread.
|
|
//
|
|
|
|
#include <QObject>
|
|
|
|
class PluginGUIHandler: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public slots:
|
|
void ReceivedInvitation(const QString& peer_id) ;
|
|
void ReceivedVoipData(const QString& peer_id) ;
|
|
void ReceivedVoipHangUp(const QString& peer_id) ;
|
|
void ReceivedVoipAccept(const QString& peer_id) ;
|
|
};
|